diff options
author | drh <> | 2022-04-28 18:17:51 +0000 |
---|---|---|
committer | drh <> | 2022-04-28 18:17:51 +0000 |
commit | a087eb8f6d28a05f3dbe8a4eee9deb45b746865d (patch) | |
tree | 8c5c1f130d27d859eb6c09d3674c5507be31f8b4 /src/sqliteInt.h | |
parent | 4bea8c6b564bf84005df34e4b7f318af6ba37189 (diff) | |
download | sqlite-a087eb8f6d28a05f3dbe8a4eee9deb45b746865d.tar.gz sqlite-a087eb8f6d28a05f3dbe8a4eee9deb45b746865d.zip |
In treeview.c, show the columns of the table associated with each SrcItem.
FossilOrigin-Name: 3aafccb5c3c780c29090ee5eb428a6c3153627ce8bf834bbd392e79a30e9389b
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 eb8ad2abe..f483cc498 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4461,6 +4461,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); |