diff options
| author | Peter Eisentraut | 2021-03-28 06:16:15 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2021-03-29 09:56:53 +0000 |
| commit | f37fec837ce8bf7af408ba66d32099e5a0182402 (patch) | |
| tree | cfbdeae1f431dab8803c9d2cac91e4d71a5e1cad /src/include | |
| parent | ebedd0c78fc51c293abe56e99a18c67af14da0c9 (diff) | |
Add unistr function
This allows decoding a string with Unicode escape sequences. It is
similar to Unicode escape strings, but offers some more flexibility.
Author: Pavel Stehule <pavel.stehule@gmail.com>
Reviewed-by: Asif Rehman <asifr.rehman@gmail.com>
Discussion: https://www.postgresql.org/message-id/flat/CAFj8pRA5GnKT+gDVwbVRH2ep451H_myBt+NTz8RkYUARE9+qOQ@mail.gmail.com
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/catversion.h | 2 | ||||
| -rw-r--r-- | src/include/catalog/pg_proc.dat | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 4a39da3c9d4..489f5be427f 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 202103266 +#define CATALOG_VERSION_NO 202103291 #endif diff --git a/src/include/catalog/pg_proc.dat b/src/include/catalog/pg_proc.dat index cc7d90d2b0b..bfb89e0575d 100644 --- a/src/include/catalog/pg_proc.dat +++ b/src/include/catalog/pg_proc.dat @@ -11527,6 +11527,10 @@ proname => 'is_normalized', prorettype => 'bool', proargtypes => 'text text', prosrc => 'unicode_is_normalized' }, +{ oid => '9822', descr => 'unescape Unicode characters', + proname => 'unistr', prorettype => 'text', proargtypes => 'text', + prosrc => 'unistr' }, + { oid => '4596', descr => 'I/O', proname => 'brin_bloom_summary_in', prorettype => 'pg_brin_bloom_summary', proargtypes => 'cstring', prosrc => 'brin_bloom_summary_in' }, |
