aboutsummaryrefslogtreecommitdiff
path: root/src/treeview.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/treeview.c')
-rw-r--r--src/treeview.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/treeview.c b/src/treeview.c
index 3ff300c38..4e9ff3eb2 100644
--- a/src/treeview.c
+++ b/src/treeview.c
@@ -489,9 +489,12 @@ void sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 moreToFollow){
sqlite3StrAccumInit(&x, 0, zFlgs, sizeof(zFlgs), 0);
sqlite3_str_appendf(&x, " fg.af=%x.%c",
pExpr->flags, pExpr->affExpr ? pExpr->affExpr : 'n');
- if( ExprHasProperty(pExpr, EP_FromJoin) ){
+ if( ExprHasProperty(pExpr, EP_OuterON) ){
sqlite3_str_appendf(&x, " iJoin=%d", pExpr->w.iJoin);
}
+ if( ExprHasProperty(pExpr, EP_InnerON) ){
+ sqlite3_str_appendf(&x, " inner-ON");
+ }
if( ExprHasProperty(pExpr, EP_FromDDL) ){
sqlite3_str_appendf(&x, " DDL");
}