diff options
author | drh <drh@noemail.net> | 2020-03-21 22:03:32 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-03-21 22:03:32 +0000 |
commit | f7f6dbf501df83d70e7e39f8f46d1b0c149c63c6 (patch) | |
tree | 2a728c07eb60ca86d274e807ebc14924caa8bfd1 /src/treeview.c | |
parent | 7d76fad8eb02855b36fc63809b310896a62094b8 (diff) | |
download | sqlite-f7f6dbf501df83d70e7e39f8f46d1b0c149c63c6.tar.gz sqlite-f7f6dbf501df83d70e7e39f8f46d1b0c149c63c6.zip |
Enhance the treeview system to show the SrcList_item.colUsed field for
FROM clause elements.
FossilOrigin-Name: 8a5c539b77aa174c048a504d211c56902075f9b42b654e1f8cc5767739e5fcc9
Diffstat (limited to 'src/treeview.c')
-rw-r--r-- | src/treeview.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/treeview.c b/src/treeview.c index 2d9da5507..45c0d748b 100644 --- a/src/treeview.c +++ b/src/treeview.c @@ -138,8 +138,8 @@ void sqlite3TreeViewSrcList(TreeView *pView, const SrcList *pSrc){ sqlite3_str_appendf(&x, " %s", pItem->zName); } if( pItem->pTab ){ - sqlite3_str_appendf(&x, " tab=%Q nCol=%d ptr=%p", - pItem->pTab->zName, pItem->pTab->nCol, pItem->pTab); + sqlite3_str_appendf(&x, " tab=%Q nCol=%d ptr=%p used=%llx", + pItem->pTab->zName, pItem->pTab->nCol, pItem->pTab, pItem->colUsed); } if( pItem->zAlias ){ sqlite3_str_appendf(&x, " (AS %s)", pItem->zAlias); |