aboutsummaryrefslogtreecommitdiff
path: root/src/treeview.c
diff options
context:
space:
mode:
authordrh <>2021-06-23 11:39:00 +0000
committerdrh <>2021-06-23 11:39:00 +0000
commit9b9f235165bd5a1093d6568ccc658a648b998412 (patch)
tree3be80b1e9222a95f6ca8e32fbef3f1a9b72327dd /src/treeview.c
parenta261c02d44bd2dad9dad019207c00c3b0e5d00ba (diff)
downloadsqlite-9b9f235165bd5a1093d6568ccc658a648b998412.tar.gz
sqlite-9b9f235165bd5a1093d6568ccc658a648b998412.zip
Show CROSS JOINs in the TreeView debuggingn output.
FossilOrigin-Name: 72e09b6c9b74c8226b231fec021228af6bc191fc1b5798d0ff2e893f4ba203bf
Diffstat (limited to 'src/treeview.c')
-rw-r--r--src/treeview.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/treeview.c b/src/treeview.c
index c737a1b98..673dc919f 100644
--- a/src/treeview.c
+++ b/src/treeview.c
@@ -142,6 +142,8 @@ void sqlite3TreeViewSrcList(TreeView *pView, const SrcList *pSrc){
}
if( pItem->fg.jointype & JT_LEFT ){
sqlite3_str_appendf(&x, " LEFT-JOIN");
+ }else if( pItem->fg.jointype & JT_CROSS ){
+ sqlite3_str_appendf(&x, " CROSS-JOIN");
}
if( pItem->fg.fromDDL ){
sqlite3_str_appendf(&x, " DDL");