mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-11 01:42:22 +03:00
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
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user