Lines Matching refs:pIn
2644 static int sqlite3InRhsIsConstant(Expr *pIn){ in sqlite3InRhsIsConstant() argument
2647 assert( !ExprHasProperty(pIn, EP_xIsSelect) ); in sqlite3InRhsIsConstant()
2648 pLHS = pIn->pLeft; in sqlite3InRhsIsConstant()
2649 pIn->pLeft = 0; in sqlite3InRhsIsConstant()
2650 res = sqlite3ExprIsConstant(pIn); in sqlite3InRhsIsConstant()
2651 pIn->pLeft = pLHS; in sqlite3InRhsIsConstant()
3374 int sqlite3ExprCheckIN(Parse *pParse, Expr *pIn){ in sqlite3ExprCheckIN() argument
3375 int nVector = sqlite3ExprVectorSize(pIn->pLeft); in sqlite3ExprCheckIN()
3376 if( ExprUseXSelect(pIn) && !pParse->db->mallocFailed ){ in sqlite3ExprCheckIN()
3377 if( nVector!=pIn->x.pSelect->pEList->nExpr ){ in sqlite3ExprCheckIN()
3378 sqlite3SubselectError(pParse, pIn->x.pSelect->pEList->nExpr, nVector); in sqlite3ExprCheckIN()
3382 sqlite3VectorErrorMsg(pParse, pIn->pLeft); in sqlite3ExprCheckIN()