Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dwhereexpr.c1816 Expr *pColRef; in sqlite3WhereTabFuncArgs() local
1832 pColRef = sqlite3ExprAlloc(pParse->db, TK_COLUMN, 0, 0); in sqlite3WhereTabFuncArgs()
1833 if( pColRef==0 ) return; in sqlite3WhereTabFuncArgs()
1834 pColRef->iTable = pItem->iCursor; in sqlite3WhereTabFuncArgs()
1835 pColRef->iColumn = k++; in sqlite3WhereTabFuncArgs()
1836 assert( ExprUseYTab(pColRef) ); in sqlite3WhereTabFuncArgs()
1837 pColRef->y.pTab = pTab; in sqlite3WhereTabFuncArgs()
1838 pItem->colUsed |= sqlite3ExprColUsed(pColRef); in sqlite3WhereTabFuncArgs()
1841 pTerm = sqlite3PExpr(pParse, TK_EQ, pColRef, pRhs); in sqlite3WhereTabFuncArgs()