Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c15697 int iSchema = -1; in dbdataBestIndex() local
15706 iSchema = i; in dbdataBestIndex()
15714 if( iSchema>=0 ){ in dbdataBestIndex()
15715 pIdx->aConstraintUsage[iSchema].argvIndex = 1; in dbdataBestIndex()
15716 pIdx->aConstraintUsage[iSchema].omit = 1; in dbdataBestIndex()
15719 pIdx->aConstraintUsage[iPgno].argvIndex = 1 + (iSchema>=0); in dbdataBestIndex()
15737 pIdx->idxNum = (iSchema>=0 ? 0x01 : 0x00) | (iPgno>=0 ? 0x02 : 0x00); in dbdataBestIndex()
28110 int iSchema = 0; in do_meta_command() local
28173 iSchema = 0; in do_meta_command()
28177 sqlite3_snprintf(sizeof(zScNum), zScNum, "%d", ++iSchema); in do_meta_command()
H A Dsqlite3.c116750 int iSchema; /* Index of the schema */
116762 iSchema = sqlite3SchemaToIndex(db, pTab->pSchema);
116763 assert( iSchema>=0 );
116764 zDb = db->aDb[iSchema].zDbSName;
116786 renameTestSchema(pParse, zDb, iSchema==1, "", 0);
116787 renameFixQuotes(pParse, zDb, iSchema==1);
116804 zDb, pTab->zName, iCol, zNew, bQuote, iSchema==1,
116816 renameReloadSchema(pParse, iSchema, INITFLAG_AlterRename);
116817 renameTestSchema(pParse, zDb, iSchema==1, "after rename", 1);
118237 int iSchema = sqlite3_value_int(argv[0]);
[all …]