Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c17930 int iSchema = -1; in dbdataBestIndex() local
17939 iSchema = i; in dbdataBestIndex()
17947 if( iSchema>=0 ){ in dbdataBestIndex()
17948 pIdx->aConstraintUsage[iSchema].argvIndex = 1; in dbdataBestIndex()
17949 pIdx->aConstraintUsage[iSchema].omit = 1; in dbdataBestIndex()
17952 pIdx->aConstraintUsage[iPgno].argvIndex = 1 + (iSchema>=0); in dbdataBestIndex()
17970 pIdx->idxNum = (iSchema>=0 ? 0x01 : 0x00) | (iPgno>=0 ? 0x02 : 0x00); in dbdataBestIndex()
30925 int iSchema = 0; in do_meta_command() local
30988 iSchema = 0; in do_meta_command()
30992 sqlite3_snprintf(sizeof(zScNum), zScNum, "%d", ++iSchema); in do_meta_command()
H A Dsqlite3.c118376 int iSchema; /* Index of the schema */
118388 iSchema = sqlite3SchemaToIndex(db, pTab->pSchema);
118389 assert( iSchema>=0 );
118390 zDb = db->aDb[iSchema].zDbSName;
118410 renameTestSchema(pParse, zDb, iSchema==1, "", 0);
118411 renameFixQuotes(pParse, zDb, iSchema==1);
118428 zDb, pTab->zName, iCol, zNew, bQuote, iSchema==1,
118440 renameReloadSchema(pParse, iSchema, INITFLAG_AlterRename);
118441 renameTestSchema(pParse, zDb, iSchema==1, "after rename", 1);
119881 int iSchema = sqlite3_value_int(argv[0]);
[all …]