Skip to content

Commit

Permalink
feature(explain): add a simple explain join to display the join orders
Browse files Browse the repository at this point in the history
  • Loading branch information
sundy-li committed Mar 22, 2023
1 parent 2909a20 commit 025cac0
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -451,5 +451,14 @@ HashJoin
├── push downs: [filters: [], limit: NONE]
└── estimated rows: 10.00

query T
explain join select * from t right anti join t1 on t1.a = t.a
----
HashJoin: LEFT ANTI
├── Build
│ └── Scan: default.join_reorder.t, rows: 1
└── Probe
└── Scan: default.join_reorder.t1, rows: 10

statement ok
drop database join_reorder

0 comments on commit 025cac0

Please sign in to comment.