Searched refs:iSchema (Results 1 – 2 of 2) sorted by relevance
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | shell.c | 14462 int iSchema = -1; in dbdataBestIndex() local 14471 iSchema = i; in dbdataBestIndex() 14479 if( iSchema>=0 ){ in dbdataBestIndex() 14480 pIdx->aConstraintUsage[iSchema].argvIndex = 1; in dbdataBestIndex() 14481 pIdx->aConstraintUsage[iSchema].omit = 1; in dbdataBestIndex() 14484 pIdx->aConstraintUsage[iPgno].argvIndex = 1 + (iSchema>=0); in dbdataBestIndex() 14502 pIdx->idxNum = (iSchema>=0 ? 0x01 : 0x00) | (iPgno>=0 ? 0x02 : 0x00); in dbdataBestIndex() 26740 int iSchema = 0; in do_meta_command() local 26803 iSchema = 0; in do_meta_command() 26807 sqlite3_snprintf(sizeof(zScNum), zScNum, "%d", ++iSchema); in do_meta_command()
|
| H A D | sqlite3.c | 116018 int iSchema; /* Index of the schema */ 116030 iSchema = sqlite3SchemaToIndex(db, pTab->pSchema); 116031 assert( iSchema>=0 ); 116032 zDb = db->aDb[iSchema].zDbSName; 116054 renameTestSchema(pParse, zDb, iSchema==1, "", 0); 116055 renameFixQuotes(pParse, zDb, iSchema==1); 116072 zDb, pTab->zName, iCol, zNew, bQuote, iSchema==1, 116084 renameReloadSchema(pParse, iSchema, INITFLAG_AlterRename); 116085 renameTestSchema(pParse, zDb, iSchema==1, "after rename", 1); 117505 int iSchema = sqlite3_value_int(argv[0]); [all …]
|