Searched refs:meta (Results 1 – 6 of 6) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | prepare.c | 206 int meta[5]; in sqlite3InitOne() local 286 for(i=0; i<ArraySize(meta); i++){ in sqlite3InitOne() 287 sqlite3BtreeGetMeta(pDb->pBt, i+1, (u32 *)&meta[i]); in sqlite3InitOne() 290 memset(meta, 0, sizeof(meta)); in sqlite3InitOne() 292 pDb->pSchema->schema_cookie = meta[BTREE_SCHEMA_VERSION-1]; in sqlite3InitOne() 299 if( meta[BTREE_TEXT_ENCODING-1] ){ /* text encoding */ in sqlite3InitOne() 304 encoding = (u8)meta[BTREE_TEXT_ENCODING-1] & 3; in sqlite3InitOne() 312 if( (meta[BTREE_TEXT_ENCODING-1] & 3)!=ENC(db) ){ in sqlite3InitOne() 324 size = sqlite3AbsInt32(meta[BTREE_DEFAULT_CACHE_SIZE-1]); in sqlite3InitOne() 339 pDb->pSchema->file_format = (u8)meta[BTREE_FILE_FORMAT-1]; in sqlite3InitOne() [all …]
|
| H A D | vacuum.c | 333 u32 meta; in sqlite3RunVacuum() local 357 sqlite3BtreeGetMeta(pMain, aCopy[i], &meta); in sqlite3RunVacuum() 358 rc = sqlite3BtreeUpdateMeta(pTemp, aCopy[i], meta+aCopy[i+1]); in sqlite3RunVacuum()
|
| H A D | shell.c.in | 8332 "WHERE type!='meta' AND sql NOTNULL AND name NOT LIKE 'sqlite_%' "
|
| /sqlite-3.40.0/test/ |
| H A D | table.test | 28 SELECT sql FROM sqlite_master WHERE type!='meta' 39 execsql {SELECT name, tbl_name, type FROM sqlite_master WHERE type!='meta'} 55 execsql {SELECT * FROM sqlite_master WHERE type!='meta'} 64 execsql {SELECT name FROM sqlite_master WHERE type!='meta'} 71 execsql {SELECT name FROM sqlite_master WHERE type!='meta'} 75 execsql {SELECT name FROM "sqlite_master" WHERE type!='meta'} 79 execsql {SELECT name as "X" FROM sqlite_master WHERE type!='meta'} 83 execsql {SELECT name FROM "sqlite_master" WHERE type!='meta'} 195 execsql {SELECT name FROM sqlite_master WHERE type!='meta'} 301 execsql {SELECT name FROM sqlite_master WHERE type!='meta'} [all …]
|
| H A D | index.test | 24 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name} 39 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name} 46 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name} 121 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name} 162 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name} 173 execsql {SELECT name FROM sqlite_master WHERE type!='meta'} 189 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name} 199 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name} 204 execsql {SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name} 213 SELECT name FROM sqlite_master WHERE type!='meta' ORDER BY name; [all …]
|
| H A D | alter2.test | 38 # has columns, then the file-format meta value should be set to (at least) 2.
|