diff options
author | drh <> | 2024-04-06 18:30:09 +0000 |
---|---|---|
committer | drh <> | 2024-04-06 18:30:09 +0000 |
commit | 6951c4977976ddca0b9e4ce75e79fc69c44dfd77 (patch) | |
tree | 50b7d2e4c5e99706a66c4c419b748ad023944afe /src/sqliteInt.h | |
parent | ed27183d835a0a3c4a2f17f9c3097d976aedc624 (diff) | |
download | sqlite-6951c4977976ddca0b9e4ce75e79fc69c44dfd77.tar.gz sqlite-6951c4977976ddca0b9e4ce75e79fc69c44dfd77.zip |
Do not allow changes to sqlite3ExprIsTableConstant() that support pushdown of
subqueries interfere with the hash-join logic.
FossilOrigin-Name: 8682931f9c6b40e1b09139c10bbe932c38330b5eb0c5c84f2432ad19a6793e37
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index a735c445e..d80a64609 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -5082,7 +5082,7 @@ int sqlite3ExprTruthValue(const Expr*); int sqlite3ExprIsConstant(Parse*,Expr*); int sqlite3ExprIsConstantOrFunction(Expr*, u8); int sqlite3ExprIsConstantOrGroupBy(Parse*, Expr*, ExprList*); -int sqlite3ExprIsSingleTableConstraint(Expr*,const SrcList*,int); +int sqlite3ExprIsSingleTableConstraint(Expr*,const SrcList*,int,int); #ifdef SQLITE_ENABLE_CURSOR_HINTS int sqlite3ExprContainsSubquery(Expr*); #endif |