diff options
author | drh <> | 2023-10-06 13:05:42 +0000 |
---|---|---|
committer | drh <> | 2023-10-06 13:05:42 +0000 |
commit | 91f3cd987456997941c88ea67f7a45ac9c7f52d2 (patch) | |
tree | b419d89d72cceb7ef340e2d116fb18309a02aca3 /src/json.c | |
parent | dd7f09e6c00315eff7930a8c13d4e8d659c541a9 (diff) | |
parent | 00eee7a786bf165e10de253fe3da19d1057f4aad (diff) | |
download | sqlite-91f3cd987456997941c88ea67f7a45ac9c7f52d2.tar.gz sqlite-91f3cd987456997941c88ea67f7a45ac9c7f52d2.zip |
Merge compiler warning fixes from trunk into the jsonb branch.
FossilOrigin-Name: 6409d307915f8969f12df2d5ffa961645bd4db7ccfbd6f52237a217b6a867252
Diffstat (limited to 'src/json.c')
-rw-r--r-- | src/json.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/json.c b/src/json.c index 7522c9571..341957275 100644 --- a/src/json.c +++ b/src/json.c @@ -5618,7 +5618,8 @@ static sqlite3_module jsonEachModule = { 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ - 0 /* xShadowName */ + 0, /* xShadowName */ + 0 /* xIntegrity */ }; /* The methods of the json_tree virtual table. */ @@ -5646,7 +5647,8 @@ static sqlite3_module jsonTreeModule = { 0, /* xSavepoint */ 0, /* xRelease */ 0, /* xRollbackTo */ - 0 /* xShadowName */ + 0, /* xShadowName */ + 0 /* xIntegrity */ }; #endif /* SQLITE_OMIT_VIRTUALTABLE */ #endif /* !defined(SQLITE_OMIT_JSON) */ |