aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2024-06-06 23:56:36 +0000
committerdrh <>2024-06-06 23:56:36 +0000
commitdf9471b1b55e956fec7f25392bfe7fc5ca481202 (patch)
tree4edf89134b9d2744dde6058a0de1bec0ac4de09d /src/sqliteInt.h
parent404ddadbd421fd3754cab1a3e90bb2dd74467fbd (diff)
parentbd1402487b5e2efcf8d7efa439ab070cee8f8ee2 (diff)
downloadsqlite-df9471b1b55e956fec7f25392bfe7fc5ca481202.tar.gz
sqlite-df9471b1b55e956fec7f25392bfe7fc5ca481202.zip
Allow the query planner access to the argument of LIMIT even if that
argument is a bound parameter. FossilOrigin-Name: c4a9dda2809c6e0e3d928e11e5553ead82cd9df551bcd35b11a7d869ef80ab8e
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 7d313e408..8866b69ea 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -5088,7 +5088,7 @@ int sqlite3ExprIsSingleTableConstraint(Expr*,const SrcList*,int,int);
#ifdef SQLITE_ENABLE_CURSOR_HINTS
int sqlite3ExprContainsSubquery(Expr*);
#endif
-int sqlite3ExprIsInteger(const Expr*, int*);
+int sqlite3ExprIsInteger(const Expr*, int*, Parse*);
int sqlite3ExprCanBeNull(const Expr*);
int sqlite3ExprNeedsNoAffinityChange(const Expr*, char);
int sqlite3IsRowid(const char*);