diff options
author | drh <> | 2022-05-02 19:59:03 +0000 |
---|---|---|
committer | drh <> | 2022-05-02 19:59:03 +0000 |
commit | 72d620bdb1a4e3e7c8d405a56ec382a89202dcec (patch) | |
tree | 19fdfa059f5a43657fb7350fa8f480cc2845d63c /src/treeview.c | |
parent | 85f93850f7589e27fca2f41789525e9ccca2fb65 (diff) | |
download | sqlite-72d620bdb1a4e3e7c8d405a56ec382a89202dcec.tar.gz sqlite-72d620bdb1a4e3e7c8d405a56ec382a89202dcec.zip |
Name resolution and "*" wildcard expansion for parenthesized FROM clauses
seems to work the same as PG. The code is chaos, however, and needs some
cleanup.
FossilOrigin-Name: 6f9c0b07aadc5189c65c3ee4e6938aac10fc0d98f1cb06980f5e5d7b0308f237
Diffstat (limited to 'src/treeview.c')
-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 b498692ba..b9d65e1ac 100644 --- a/src/treeview.c +++ b/src/treeview.c @@ -882,6 +882,7 @@ void sqlite3TreeViewBareExprList( fprintf(stdout, "TABLE-ALIAS-NAME(\"%s\") ", zName); if( pList->a[i].bUsed ) fprintf(stdout, "(used) "); if( pList->a[i].bUsingTerm ) fprintf(stdout, "(USING-term) "); + if( pList->a[i].bNoExpand ) fprintf(stdout, "(NoExpand) "); break; case ENAME_SPAN: fprintf(stdout, "SPAN(\"%s\") ", zName); |