mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-10 01:02:56 +03:00
Fix a bug in sqlite3ExprContainsSubquery().
FossilOrigin-Name: be254715b5f56900e57ed57a179ca8d7bb68685d
This commit is contained in:
@@ -1411,7 +1411,7 @@ int sqlite3ExprContainsSubquery(Expr *p){
|
||||
w.xExprCallback = sqlite3ExprWalkNoop;
|
||||
w.xSelectCallback = selectNodeIsConstant;
|
||||
sqlite3WalkExpr(&w, p);
|
||||
return w.u.n==0;
|
||||
return w.eCode==0;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user