mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-05 15:55:57 +03:00
Back out the SQLITE_CONFIG_URI option from anytime-config.
FossilOrigin-Name: 0de98b8e21e4cbf2438160651585ea23ebea952c5a4e7d88e5eabe5cc49517b2
This commit is contained in:
@@ -437,14 +437,12 @@ int sqlite3_config(int op, ...){
|
||||
if( sqlite3GlobalConfig.isInit ){
|
||||
static const u64 mAnytimeConfigOption = 0
|
||||
| MASKBIT64( SQLITE_CONFIG_LOG )
|
||||
| MASKBIT64( SQLITE_CONFIG_URI )
|
||||
| MASKBIT64( SQLITE_CONFIG_PCACHE_HDRSZ )
|
||||
;
|
||||
if( op<0 || op>63 || (MASKBIT64(op) & mAnytimeConfigOption)==0 ){
|
||||
return SQLITE_MISUSE_BKPT;
|
||||
}
|
||||
testcase( op==SQLITE_CONFIG_LOG );
|
||||
testcase( op==SQLITE_CONFIG_URI );
|
||||
testcase( op==SQLITE_CONFIG_PCACHE_HDRSZ );
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user