aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2022-04-06 00:29:21 +0000
committerdrh <>2022-04-06 00:29:21 +0000
commit7d2c1d24b0a331590ec2c8fd53bc9bf569b54300 (patch)
treea2955fdf3cee669cf44c671263fcac0941532a08 /src/sqliteInt.h
parentec534e6a23f305b571f448480b4bfed2de8f0c16 (diff)
downloadsqlite-7d2c1d24b0a331590ec2c8fd53bc9bf569b54300.tar.gz
sqlite-7d2c1d24b0a331590ec2c8fd53bc9bf569b54300.zip
Add new diagnostic "sqlite3TreeView" routines for IdList, Upsert, and for
INSERT statements. This is all debugging code. There are no changes to release builds. FossilOrigin-Name: f3084122039bcb30c8617f5f432009a49be8b488235850a1f10ef862c91560b2
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 6b08281fe..9662508da 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -4415,9 +4415,15 @@ char *sqlite3VMPrintf(sqlite3*,const char*, va_list);
void sqlite3TreeViewExpr(TreeView*, const Expr*, u8);
void sqlite3TreeViewBareExprList(TreeView*, const ExprList*, const char*);
void sqlite3TreeViewExprList(TreeView*, const ExprList*, u8, const char*);
+ void sqlite3TreeViewBareIdList(TreeView*, const IdList*, const char*);
+ void sqlite3TreeViewIdList(TreeView*, const IdList*, u8, const char*);
void sqlite3TreeViewSrcList(TreeView*, const SrcList*);
void sqlite3TreeViewSelect(TreeView*, const Select*, u8);
void sqlite3TreeViewWith(TreeView*, const With*, u8);
+ void sqlite3TreeViewUpsert(TreeView*, const Upsert*, u8);
+ void sqlite3TreeViewInsert(TreeView*, const With*, const SrcList*,
+ const IdList*, const Select*, int,
+ const Upsert*);
#ifndef SQLITE_OMIT_WINDOWFUNC
void sqlite3TreeViewWindow(TreeView*, const Window*, u8);
void sqlite3TreeViewWinFunc(TreeView*, const Window*, u8);