aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordan <dan@noemail.net>2016-12-07 15:38:37 +0000
committerdan <dan@noemail.net>2016-12-07 15:38:37 +0000
commit44c5604cedbee85135eff5957af4e3843f25afa9 (patch)
tree3b74f7fe28289a77a16f74dc89aa3928c8b3b528 /src/sqliteInt.h
parent9314bd5fe2916f7034dbc197d9fcac06dc9c41d0 (diff)
downloadsqlite-44c5604cedbee85135eff5957af4e3843f25afa9.tar.gz
sqlite-44c5604cedbee85135eff5957af4e3843f25afa9.zip
Prevent the flattening or where-term push-down optimizations from obscuring
misuses of SQL row values that can lead to crashes or assert() failures. FossilOrigin-Name: 433d16ff3adfede3be53d5b0e0512f37e225591b
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 38b002a09..4d0af9800 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4286,5 +4286,6 @@ int sqlite3ExprVectorSize(Expr *pExpr);
int sqlite3ExprIsVector(Expr *pExpr);
Expr *sqlite3VectorFieldSubexpr(Expr*, int);
Expr *sqlite3ExprForVectorField(Parse*,Expr*,int);
+void sqlite3VectorErrorMsg(Parse*, Expr*);
#endif /* SQLITEINT_H */