We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6289d65 commit 0b3426cCopy full SHA for 0b3426c
FUNCTIONS/cbor_next_map.sql
@@ -15,7 +15,7 @@ WITH RECURSIVE x AS (
15
SELECT
16
map_value.remainder,
17
x.item_count-1,
18
- x.map || jsonb_build_object(trim('"' FROM map_key.item::text), map_value.item)
+ x.map || jsonb_build_object(map_key.item#>>'{}', map_value.item)
19
FROM x
20
JOIN LATERAL webauthn.cbor_next_item(x.remainder) AS map_key ON TRUE
21
JOIN LATERAL webauthn.cbor_next_item(map_key.remainder) AS map_value ON TRUE
0 commit comments