We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 861f617 commit 5f906f5Copy full SHA for 5f906f5
functions/unicode_unescape.sql
@@ -8,7 +8,7 @@ create or replace function public.unicode_unescape(text)
8
as
9
$func$
10
-- input string - only as \uXXXX sequence
11
- -- TODO validate format and return NULL for invalid strings (see string_to_jsonb.sql)?
+ -- TODO validate format by regexp and return NULL for invalid strings?
12
select concat('"', $1, '"')::jsonb->>0;
13
$func$;
14
0 commit comments