diff options
author | drh <drh@noemail.net> | 2020-01-03 00:28:14 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-01-03 00:28:14 +0000 |
commit | e1f49b88501363222a3f13c25c1ec4e08150811b (patch) | |
tree | 8dd0da2ad154e5f85f2af33e7f6f7dc72f0c836f /src | |
parent | 24d35e409c900adba4f5528e70c6c7e5e748cfd0 (diff) | |
download | sqlite-e1f49b88501363222a3f13c25c1ec4e08150811b.tar.gz sqlite-e1f49b88501363222a3f13c25c1ec4e08150811b.zip |
Fix a problem in sqlite3TreeViewBareExprList() in which the routine was
not interpreting the new ExprList format correctly.
FossilOrigin-Name: cd56872afbb4edeff2e8c1cb1c8d47c7a9b333b3fc416c20183250807291fae8
Diffstat (limited to 'src')
-rw-r--r-- | src/treeview.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/treeview.c b/src/treeview.c index e6ec4161b..938c1f1a1 100644 --- a/src/treeview.c +++ b/src/treeview.c @@ -730,6 +730,7 @@ void sqlite3TreeViewBareExprList( int j = pList->a[i].u.x.iOrderByCol; char *zName = pList->a[i].zEName; int moreToFollow = i<pList->nExpr - 1; + if( pList->a[i].eEName!=ENAME_NAME ) zName = 0; if( j || zName ){ sqlite3TreeViewPush(pView, moreToFollow); moreToFollow = 0; |