Home
last modified time | relevance | path

Searched refs:iSchema (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dshell.c19945 int iSchema = -1; in dbdataBestIndex() local
19954 iSchema = i; in dbdataBestIndex()
19962 if( iSchema>=0 ){ in dbdataBestIndex()
19963 pIdx->aConstraintUsage[iSchema].argvIndex = 1; in dbdataBestIndex()
19964 pIdx->aConstraintUsage[iSchema].omit = 1; in dbdataBestIndex()
19967 pIdx->aConstraintUsage[iPgno].argvIndex = 1 + (iSchema>=0); in dbdataBestIndex()
19985 pIdx->idxNum = (iSchema>=0 ? 0x01 : 0x00) | (iPgno>=0 ? 0x02 : 0x00); in dbdataBestIndex()
34128 int iSchema = 0; in do_meta_command() local
34190 iSchema = 0; in do_meta_command()
34194 sqlite3_snprintf(sizeof(zScNum), zScNum, "%d", ++iSchema); in do_meta_command()
[all …]
H A Dsqlite3.c121159 int iSchema; /* Index of the schema */ local
121171 iSchema = sqlite3SchemaToIndex(db, pTab->pSchema);
121172 assert( iSchema>=0 );
121173 zDb = db->aDb[iSchema].zDbSName;
121193 renameTestSchema(pParse, zDb, iSchema==1, "", 0);
121194 renameFixQuotes(pParse, zDb, iSchema==1);
121211 zDb, pTab->zName, iCol, zNew, bQuote, iSchema==1,
121223 renameReloadSchema(pParse, iSchema, INITFLAG_AlterRename);
121224 renameTestSchema(pParse, zDb, iSchema==1, "after rename", 1);
122730 int iSchema = sqlite3_value_int(argv[0]); local
[all …]