Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/sqlite3/
H A Dshell.c12009 char *zColl; member
12215 int nColl = STRLEN(zColl); in idxNewConstraint()
12220 pNew->zColl = (char*)&pNew[1]; in idxNewConstraint()
12221 memcpy(pNew->zColl, zColl, nColl+1); in idxNewConstraint()
12399 pNew = idxNewConstraint(&rc, zColl); in expertBestIndex()
12676 pNew->aCol[nCol].zColl = pCsr; in idxGetTableInfo()
12776 if( sqlite3_stricmp(p->zColl, pCons->zColl) ){ in idxAppendColDefn()
12777 if( idxIdentifierRequiresQuotes(pCons->zColl) ){ in idxAppendColDefn()
12835 if( sqlite3_stricmp(pIter->zColl, zColl) ) continue; in idxFindCompatible()
12845 if( pT->iCol!=iCol || sqlite3_stricmp(pT->zColl, zColl) ){ in idxFindCompatible()
[all …]
H A Dsqlite3.c86745 if( strcmp(zColl, "BINARY")==0 ) zColl = "B";
122102 const char *zColl
122107 assert( zColl!=0 );
125601 zColl = 0;
125609 zColl = zExtra;
125615 if( !zColl ) zColl = sqlite3StrBINARY;
126808 if( zColl==0 || collationMatch(zColl, pIndex) ){
126876 char *zColl;
131887 const char *zColl;
131897 if( zColl==0 ) zColl = db->pDfltColl->zName;
[all …]