aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2021-11-22 13:35:40 +0000
committerdrh <>2021-11-22 13:35:40 +0000
commit9f9bdf93453b61d7db051f12b7eee657a1439c08 (patch)
tree18165fbfc19f6e31c603af01a60ff33efb457a7a /src/sqliteInt.h
parent156d44104af2c412ae487ee270ca9de29f9e815b (diff)
downloadsqlite-9f9bdf93453b61d7db051f12b7eee657a1439c08.tar.gz
sqlite-9f9bdf93453b61d7db051f12b7eee657a1439c08.zip
Fix the build for SQLITE_OMIT_CTE.
FossilOrigin-Name: d7ef96bae459f800241483fe8784552d18ee7f92f408f6453ac687de5530bbb9
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 09bccc92f..90068fc7a 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -5112,7 +5112,7 @@ const char *sqlite3JournalModename(int);
# define sqlite3CteDelete(D,C)
# define sqlite3CteWithAdd(P,W,C) ((void*)0)
# define sqlite3WithDelete(x,y)
-# define sqlite3WithPush(x,y,z)
+# define sqlite3WithPush(x,y,z) ((void*)0)
#endif
#ifndef SQLITE_OMIT_UPSERT
Upsert *sqlite3UpsertNew(sqlite3*,ExprList*,Expr*,ExprList*,Expr*,Upsert*);