diff options
author | drh <drh@noemail.net> | 2019-02-02 15:59:49 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-02-02 15:59:49 +0000 |
commit | e5989723ba9b6510728d8a50f35347dc8aa4ee6b (patch) | |
tree | 0cf2697e5e478696897f50d4a8928962e3476948 /src/sqliteInt.h | |
parent | 9b2bd91d9a4bf91c3dff1caf1ec2687ed9b54873 (diff) | |
download | sqlite-e5989723ba9b6510728d8a50f35347dc8aa4ee6b.tar.gz sqlite-e5989723ba9b6510728d8a50f35347dc8aa4ee6b.zip |
Honor key query parameters for SEE on the URI filename for ATTACH
and VACUUM INTO.
FossilOrigin-Name: 2e01096b8933a2315e3dffcd7d0de84c744c1b4be1d909388c61f0fd636ddb99
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index e8211a142..774d3e501 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3882,6 +3882,11 @@ void sqlite3AddCollateType(Parse*, Token*); void sqlite3EndTable(Parse*,Token*,Token*,u8,Select*); int sqlite3ParseUri(const char*,const char*,unsigned int*, sqlite3_vfs**,char**,char **); +#ifdef SQLITE_HAS_CODEC + int sqlite3CodecQueryParameters(sqlite3*,const char*,const char*); +#else +# define sqlite3CodecQueryParameters(A,B,C) 0 +#endif Btree *sqlite3DbNameToBtree(sqlite3*,const char*); #ifdef SQLITE_UNTESTABLE |