Home
last modified time | relevance | path

Searched refs:zCols (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/ext/expert/
H A Dsqlite3expert.c972 char *zCols = 0; in idxCreateFromCons() local
979 zCols = idxAppendColDefn(&rc, zCols, pTab, pCons); in idxCreateFromCons()
982 zCols = idxAppendColDefn(&rc, zCols, pTab, pCons); in idxCreateFromCons()
994 for(i=0; zCols[i]; i++){ in idxCreateFromCons()
995 h += ((h<<3) + zCols[i]); in idxCreateFromCons()
1025 zIdx = sqlite3_mprintf(zFmt, zName, zTable, zCols); in idxCreateFromCons()
1041 sqlite3_free(zCols); in idxCreateFromCons()
1608 char *zCols = 0; in idxPopulateOneStat1() local
1622 const char *zComma = zCols==0 ? "" : ", "; in idxPopulateOneStat1()
1625 zCols = idxAppendText(&rc, zCols, in idxPopulateOneStat1()
[all …]
/sqlite-3.40.0/ext/fts3/
H A Dfts3.c638 char *zCols; /* List of user defined columns */ in fts3DeclareVtab() local
645 zCols = sqlite3_mprintf("%Q, ", p->azColumn[0]); in fts3DeclareVtab()
646 for(i=1; zCols && i<p->nColumn; i++){ in fts3DeclareVtab()
647 zCols = sqlite3_mprintf("%z%Q, ", zCols, p->azColumn[i]); in fts3DeclareVtab()
653 zCols, p->zName, zLanguageid in fts3DeclareVtab()
655 if( !zCols || !zSql ){ in fts3DeclareVtab()
662 sqlite3_free(zCols); in fts3DeclareVtab()
/sqlite-3.40.0/ext/rbu/
H A Dsqlite3rbu.c2047 char *zCols = 0; /* Used to build up list of table cols */ in rbuCreateImposterTable2() local
2075 zCols = rbuMPrintf(p, "%z%sc%d %s COLLATE %Q", zCols, zComma, in rbuCreateImposterTable2()
2082 zCols = rbuMPrintf(p, "%z, id INTEGER", zCols); in rbuCreateImposterTable2()
2088 zCols, zPk in rbuCreateImposterTable2()
/sqlite-3.40.0/src/
H A Danalyze.c175 const char *zCols; in openStatTable() member
216 "CREATE TABLE %Q.%s(%s)", pDb->zDbSName, zTab, aTable[i].zCols in openStatTable()