Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c33876 Expr *pOB = pExpr->pLeft; in sqlite3TreeViewExpr() local
33877 assert( pOB->op==TK_ORDER ); in sqlite3TreeViewExpr()
33878 assert( ExprUseXList(pOB) ); in sqlite3TreeViewExpr()
33879 sqlite3TreeViewExprList(pView, pOB->x.pList, pWin!=0, "ORDERBY"); in sqlite3TreeViewExpr()
111563 Expr *pOB;
111588 pOB = sqlite3ExprAlloc(db, TK_ORDER, 0, 0);
111589 if( pOB==0 ){
111593 pOB->x.pList = pOrderBy;
111594 assert( ExprUseXList(pOB) );
111595 pExpr->pLeft = pOB;
[all …]