diff options
author | drh <> | 2023-12-11 19:00:44 +0000 |
---|---|---|
committer | drh <> | 2023-12-11 19:00:44 +0000 |
commit | ba5505657f94d5eb6bb7f0bd294e0c0b35b50dae (patch) | |
tree | 1c92679f271cd3397cd20e7a868341891bfe16c0 /src/sqliteInt.h | |
parent | 7d2eaae83e46ef5f41419bdd4934f7ed4217529b (diff) | |
download | sqlite-ba5505657f94d5eb6bb7f0bd294e0c0b35b50dae.tar.gz sqlite-ba5505657f94d5eb6bb7f0bd294e0c0b35b50dae.zip |
Rename the new test-control to SQLITE_TESTCTRL_JSON_SELFCHECK. Make it so
that the current value of the setting can be interrogated.
FossilOrigin-Name: 7aff1d9a4cb17ecd5abab21ab032f35a78741dd641ddd8cbcc85fc4a81a0707d
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index f2846ca6d..83226b575 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4178,7 +4178,7 @@ struct Sqlite3Config { u8 bExtraSchemaChecks; /* Verify type,name,tbl_name in schema */ u8 bUseLongDouble; /* Make use of long double */ #ifdef SQLITE_DEBUG - u8 bJsonbValidate; /* Double-check JSONB parsing */ + u8 bJsonSelfcheck; /* Double-check JSON parsing */ #endif int mxStrlen; /* Maximum string length */ int neverCorrupt; /* Database is always well-formed */ |