diff options
author | drh <drh@noemail.net> | 2015-06-05 22:33:39 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-06-05 22:33:39 +0000 |
commit | 4490c40b90039ea48db8c88c81234787ec0ab0ba (patch) | |
tree | 9c4f5a65b34f5f8c8c33b793a1fe0a631130d1ed /src/expr.c | |
parent | bc8edba10a19a477022353fc34766a3390c8c31d (diff) | |
download | sqlite-4490c40b90039ea48db8c88c81234787ec0ab0ba.tar.gz sqlite-4490c40b90039ea48db8c88c81234787ec0ab0ba.zip |
Split FROM-clause subquery flattening and code generation into separate loops.
FossilOrigin-Name: be8e3fc70e4c13b28b07985df3457960f58ffddd
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/expr.c b/src/expr.c index 56a62e0c3..d62346e39 100644 --- a/src/expr.c +++ b/src/expr.c @@ -3559,14 +3559,6 @@ void sqlite3TreeViewExprList( sqlite3TreeViewLine(pView, "%s", zLabel); for(i=0; i<pList->nExpr; i++){ sqlite3TreeViewExpr(pView, pList->a[i].pExpr, i<pList->nExpr-1); -#if 0 - if( pList->a[i].zName ){ - sqlite3ExplainPrintf(pOut, " AS %s", pList->a[i].zName); - } - if( pList->a[i].bSpanIsTab ){ - sqlite3ExplainPrintf(pOut, " (%s)", pList->a[i].zSpan); - } -#endif } } sqlite3TreeViewPop(pView); |