diff options
author | drh <> | 2023-12-21 18:08:05 +0000 |
---|---|---|
committer | drh <> | 2023-12-21 18:08:05 +0000 |
commit | c2eff91bd320b0199cd37b0c448466f3262a8f74 (patch) | |
tree | 5d3ad3a368d4e566cfd072b52c60ff94cf771536 /src | |
parent | 0d7f0e49a405484b8fa7fcad76f55b648ad8574b (diff) | |
download | sqlite-c2eff91bd320b0199cd37b0c448466f3262a8f74.tar.gz sqlite-c2eff91bd320b0199cd37b0c448466f3262a8f74.zip |
Add internal core-developer-only documentation of the JSONB format.
FossilOrigin-Name: 4d30478863b2a60512010de9ec6e3099bfaf75d4afee20acec536713fe94334d
Diffstat (limited to 'src')
-rw-r--r-- | src/json.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/json.c b/src/json.c index 8fae3d114..e4f658ca7 100644 --- a/src/json.c +++ b/src/json.c @@ -113,6 +113,9 @@ ** checks are true, the BLOB is assumed to be JSONB and processing continues. ** Errors are only raised if some other miscoding is discovered during ** processing. +** +** Additional information can be found in the doc/jsonb.md file of the +** canonical SQLite source tree. */ #ifndef SQLITE_OMIT_JSON #include "sqliteInt.h" |