diff options
author | drh <> | 2022-04-29 17:13:52 +0000 |
---|---|---|
committer | drh <> | 2022-04-29 17:13:52 +0000 |
commit | 0c0d0526dceb2a1aab97539d041e777a0cadcd89 (patch) | |
tree | 02a4114b7c5ce94633ef94fa78b594f0289fb87e /src/sqliteInt.h | |
parent | de7a820fd028aef290d8a0d4ffe0a2b080302acf (diff) | |
download | sqlite-0c0d0526dceb2a1aab97539d041e777a0cadcd89.tar.gz sqlite-0c0d0526dceb2a1aab97539d041e777a0cadcd89.zip |
Multiple enhancements to the TreeView output for SrcItem, cherrypicked from
the right-join experimental branch.
FossilOrigin-Name: 293afa81112e824eec2557d004a27319d484276f796936e16d64243fe24f6b68
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index d799510fc..e526a775c 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4459,6 +4459,7 @@ char *sqlite3VMPrintf(sqlite3*,const char*, va_list); void sqlite3TreeViewExprList(TreeView*, const ExprList*, u8, const char*); void sqlite3TreeViewBareIdList(TreeView*, const IdList*, const char*); void sqlite3TreeViewIdList(TreeView*, const IdList*, u8, const char*); + void sqlite3TreeViewColumnList(TreeView*, const Column*, int, u8); void sqlite3TreeViewSrcList(TreeView*, const SrcList*); void sqlite3TreeViewSelect(TreeView*, const Select*, u8); void sqlite3TreeViewWith(TreeView*, const With*, u8); |