diff options
author | drh <> | 2022-04-06 10:37:44 +0000 |
---|---|---|
committer | drh <> | 2022-04-06 10:37:44 +0000 |
commit | f8ef2dbd7be8df555ce63e8dc8edbb680d6f0e70 (patch) | |
tree | ef418de3ccb82764c5bb725710968b26665ebc11 /src/sqliteInt.h | |
parent | 7d2c1d24b0a331590ec2c8fd53bc9bf569b54300 (diff) | |
download | sqlite-f8ef2dbd7be8df555ce63e8dc8edbb680d6f0e70.tar.gz sqlite-f8ef2dbd7be8df555ce63e8dc8edbb680d6f0e70.zip |
Add additional tree display routines for DELETE and UPDATE. No changes
to deliverable code.
FossilOrigin-Name: fbd288ff3d4ea47cd324b5952e7754a465901844f2d950f0860d4488d5b6eb9f
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 9662508da..6d403f4f1 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4421,9 +4421,14 @@ char *sqlite3VMPrintf(sqlite3*,const char*, va_list); void sqlite3TreeViewSelect(TreeView*, const Select*, u8); void sqlite3TreeViewWith(TreeView*, const With*, u8); void sqlite3TreeViewUpsert(TreeView*, const Upsert*, u8); + void sqlite3TreeViewDelete(TreeView*, const With*, const SrcList*, + const Expr*,const ExprList*,const Expr*); void sqlite3TreeViewInsert(TreeView*, const With*, const SrcList*, const IdList*, const Select*, int, const Upsert*); + void sqlite3TreeViewUpdate(TreeView*, const With*, const SrcList*, + const ExprList*, const Expr*, int, + const ExprList*, const Expr*, const Upsert*); #ifndef SQLITE_OMIT_WINDOWFUNC void sqlite3TreeViewWindow(TreeView*, const Window*, u8); void sqlite3TreeViewWinFunc(TreeView*, const Window*, u8); |