aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2020-01-08 17:28:19 +0000
committerdrh <drh@noemail.net>2020-01-08 17:28:19 +0000
commit0dfa5255bc012a1991809e23ad2ac1a4089e1261 (patch)
treec5c6a902e0f9332547c9b20f4a54c8dd7c0ee5b2 /src/sqliteInt.h
parent15f3eacfc0e9cfe6ebd4e71a342fab18c6d5eee0 (diff)
downloadsqlite-0dfa5255bc012a1991809e23ad2ac1a4089e1261.tar.gz
sqlite-0dfa5255bc012a1991809e23ad2ac1a4089e1261.zip
Check for whether or not it is safe to use non-innocuous functions as the
function is being coded, not when its name is resolved. FossilOrigin-Name: 1da802d54b689a462e1fe899c6ffa08ef14d34f36728b14b055b5a76b1edc274
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 455403637..e56a4b3d5 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4056,6 +4056,7 @@ void sqlite3PExprAddSelect(Parse*, Expr*, Select*);
Expr *sqlite3ExprAnd(Parse*,Expr*, Expr*);
Expr *sqlite3ExprSimplifiedAndOr(Expr*);
Expr *sqlite3ExprFunction(Parse*,ExprList*, Token*, int);
+void sqlite3ExprFunctionUsable(Parse*,Expr*,FuncDef*);
void sqlite3ExprAssignVarNumber(Parse*, Expr*, u32);
void sqlite3ExprDelete(sqlite3*, Expr*);
void sqlite3ExprUnmapAndDelete(Parse*, Expr*);