diff options
author | drh <> | 2023-05-01 18:28:48 +0000 |
---|---|---|
committer | drh <> | 2023-05-01 18:28:48 +0000 |
commit | abdcfcef83991c6dba82befbc6683441ffb6619f (patch) | |
tree | 73d5116978e22b40e44bbe00d91b2358408ab278 /src/global.c | |
parent | 5ecee3dae30dc88248f501868dca975582a77f42 (diff) | |
parent | e210c9390321379f9a5c0b7a205e67128ab12192 (diff) | |
download | sqlite-abdcfcef83991c6dba82befbc6683441ffb6619f.tar.gz sqlite-abdcfcef83991c6dba82befbc6683441ffb6619f.zip |
Add support for JSON5.
FossilOrigin-Name: f8c3ed23a6931b1da3b93b3274b132387078112a5c8e8d06b5312c47987d3937
Diffstat (limited to 'src/global.c')
-rw-r--r-- | src/global.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/global.c b/src/global.c index b018c5002..fcba7d7fa 100644 --- a/src/global.c +++ b/src/global.c @@ -97,7 +97,7 @@ const unsigned char *sqlite3aGTb = &sqlite3UpperToLower[256+12-OP_Ne]; ** isalnum() 0x06 ** isxdigit() 0x08 ** toupper() 0x20 -** SQLite identifier character 0x40 +** SQLite identifier character 0x40 $, _, or non-ascii ** Quote character 0x80 ** ** Bit 0x20 is set if the mapped character requires translation to upper |