Home
last modified time | relevance | path

Searched refs:temp_store (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/test/
H A Dpragma.test277 PRAGMA temp_store;
283 PRAGMA temp_store;
289 PRAGMA temp_store;
300 PRAGMA temp_store;
307 PRAGMA temp_store;
323 PRAGMA temp_store;
330 PRAGMA temp_store;
346 PRAGMA temp_store;
353 PRAGMA temp_store;
364 PRAGMA temp_store
[all …]
/illumos-gate/usr/src/tools/smatch/src/smatch_data/db/
H A Dbuild_late_index.sh11 PRAGMA temp_store = MEMORY;
H A Dbuild_early_index.sh11 PRAGMA temp_store = MEMORY;
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dmain.c282 if( meta[6]>0 && meta[6]<=2 && db->temp_store==0 ){ in sqliteInitOne()
283 db->temp_store = meta[6]; in sqliteInitOne()
499 db->temp_store = 2; in sqlite_open()
1125 int location = db->temp_store==0 ? TEMP_STORE : db->temp_store; in sqliteBtreeFactory()
H A Dpragma.c94 if( db->temp_store==ts ) return SQLITE_OK; in changeTempStorage()
105 db->temp_store = ts; in changeTempStorage()
521 sqliteVdbeAddOp(v, OP_Integer, db->temp_store, 0); in sqlitePragma()
H A DsqliteInt.h352 u8 temp_store; /* 1=file, 2=memory, 0=compile-time default */ member