Skip to content

Commit

Permalink
chore(test): update sqllogictest
Browse files Browse the repository at this point in the history
  • Loading branch information
Dousir9 committed Nov 28, 2024
1 parent 960b4aa commit 7e25a54
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -609,14 +609,13 @@ HashJoin
query T
explain select * from t1, t2 where t1.a > t2.a and t1.a > 5 and t2.a > 10;
----
HashJoin
├── output columns: [t1.a (#0), t1.b (#1), t2.a (#2), t2.b (#3)]
MergeJoin
├── output columns: [t2.a (#2), t2.b (#3), t1.a (#0), t1.b (#1)]
├── join type: INNER
├── build keys: []
├── probe keys: []
├── filters: [t1.a (#0) > t2.a (#2)]
├── range join conditions: [t2.a (#2) "lt" t1.a (#0)]
├── other conditions: []
├── estimated rows: 0.00
├── Filter(Build)
├── Filter(Left)
│ ├── output columns: [t2.a (#2), t2.b (#3)]
│ ├── filters: [t2.a (#2) > 10]
│ ├── estimated rows: 0.00
Expand All @@ -629,7 +628,7 @@ HashJoin
│ ├── partitions scanned: 0
│ ├── push downs: [filters: [t2.a (#2) > 10], limit: NONE]
│ └── estimated rows: 0.00
└── Filter(Probe)
└── Filter(Right)
├── output columns: [t1.a (#0), t1.b (#1)]
├── filters: [t1.a (#0) > 5]
├── estimated rows: 0.00
Expand All @@ -647,14 +646,13 @@ HashJoin
query T
explain select * from t1, t2 where t1.a > t2.a and t1.a > 5 and t1.a > 10;
----
HashJoin
├── output columns: [t1.a (#0), t1.b (#1), t2.a (#2), t2.b (#3)]
MergeJoin
├── output columns: [t2.a (#2), t2.b (#3), t1.a (#0), t1.b (#1)]
├── join type: INNER
├── build keys: []
├── probe keys: []
├── filters: [t1.a (#0) > t2.a (#2)]
├── range join conditions: [t2.a (#2) "lt" t1.a (#0)]
├── other conditions: []
├── estimated rows: 0.00
├── TableScan(Build)
├── TableScan(Left)
│ ├── table: default.default.t2
│ ├── output columns: [a (#2), b (#3)]
│ ├── read rows: 0
Expand All @@ -663,7 +661,7 @@ HashJoin
│ ├── partitions scanned: 0
│ ├── push downs: [filters: [], limit: NONE]
│ └── estimated rows: 0.00
└── Filter(Probe)
└── Filter(Right)
├── output columns: [t1.a (#0), t1.b (#1)]
├── filters: [t1.a (#0) > 10]
├── estimated rows: 0.00
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -489,14 +489,13 @@ HashJoin
query T
explain select * from t1, t2 where t1.a > t2.a and t1.a > 5 and t2.a > 10;
----
HashJoin
├── output columns: [t1.a (#0), t1.b (#1), t2.a (#2), t2.b (#3)]
MergeJoin
├── output columns: [t2.a (#2), t2.b (#3), t1.a (#0), t1.b (#1)]
├── join type: INNER
├── build keys: []
├── probe keys: []
├── filters: [t1.a (#0) > t2.a (#2)]
├── range join conditions: [t2.a (#2) "lt" t1.a (#0)]
├── other conditions: []
├── estimated rows: 0.00
├── TableScan(Build)
├── TableScan(Left)
│ ├── table: default.default.t2
│ ├── output columns: [a (#2), b (#3)]
│ ├── read rows: 0
Expand All @@ -505,7 +504,7 @@ HashJoin
│ ├── partitions scanned: 0
│ ├── push downs: [filters: [t2.a (#2) > 10], limit: NONE]
│ └── estimated rows: 0.00
└── TableScan(Probe)
└── TableScan(Right)
├── table: default.default.t1
├── output columns: [a (#0), b (#1)]
├── read rows: 0
Expand All @@ -519,14 +518,13 @@ HashJoin
query T
explain select * from t1, t2 where t1.a > t2.a and t1.a > 5 and t1.a > 10;
----
HashJoin
├── output columns: [t1.a (#0), t1.b (#1), t2.a (#2), t2.b (#3)]
MergeJoin
├── output columns: [t2.a (#2), t2.b (#3), t1.a (#0), t1.b (#1)]
├── join type: INNER
├── build keys: []
├── probe keys: []
├── filters: [t1.a (#0) > t2.a (#2)]
├── range join conditions: [t2.a (#2) "lt" t1.a (#0)]
├── other conditions: []
├── estimated rows: 0.00
├── TableScan(Build)
├── TableScan(Left)
│ ├── table: default.default.t2
│ ├── output columns: [a (#2), b (#3)]
│ ├── read rows: 0
Expand All @@ -535,7 +533,7 @@ HashJoin
│ ├── partitions scanned: 0
│ ├── push downs: [filters: [], limit: NONE]
│ └── estimated rows: 0.00
└── TableScan(Probe)
└── TableScan(Right)
├── table: default.default.t1
├── output columns: [a (#0), b (#1)]
├── read rows: 0
Expand Down

0 comments on commit 7e25a54

Please sign in to comment.