Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
leiysky committed Jan 11, 2023
1 parent 8c4dddc commit 70b345e
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions tests/sqllogictests/suites/mode/standalone/explain/explain.test
Original file line number Diff line number Diff line change
Expand Up @@ -621,36 +621,36 @@ Filter
├── probe keys: []
├── filters: []
├── estimated rows: 0.00
├── HashJoin(Build)
│ ├── join type: CROSS
│ ├── build keys: []
│ ├── probe keys: []
│ ├── filters: []
│ ├── estimated rows: 0.00
│ ├── TableScan(Build)
│ ├── table: default.default.t3
│ │ ├── read rows: 0
├── read bytes: 0
├── partitions total: 0
├── partitions scanned: 0
├── push downs: [filters: [], limit: NONE]
│ └── estimated rows: 0.00
── TableScan(Probe)
├── table: default.default.t2
├── read rows: 0
├── read bytes: 0
├── partitions total: 0
├── partitions scanned: 0
├── push downs: [filters: [], limit: NONE]
└── estimated rows: 0.00
└── TableScan(Probe)
├── table: default.default.t1
├── read rows: 0
├── read bytes: 0
├── partitions total: 0
├── partitions scanned: 0
├── push downs: [filters: [], limit: NONE]
└── estimated rows: 0.00
├── TableScan(Build)
│ ├── table: default.default.t2
│ ├── read rows: 0
│ ├── read bytes: 0
│ ├── partitions total: 0
│ ├── partitions scanned: 0
│ ├── push downs: [filters: [], limit: NONE]
── estimated rows: 0.00
── HashJoin(Probe)
├── join type: CROSS
├── build keys: []
├── probe keys: []
├── filters: []
── estimated rows: 0.00
── TableScan(Build)
├── table: default.default.t3
├── read rows: 0
├── read bytes: 0
├── partitions total: 0
├── partitions scanned: 0
├── push downs: [filters: [], limit: NONE]
└── estimated rows: 0.00
└── TableScan(Probe)
├── table: default.default.t1
├── read rows: 0
├── read bytes: 0
├── partitions total: 0
├── partitions scanned: 0
├── push downs: [filters: [], limit: NONE]
└── estimated rows: 0.00

query T
explain select * from t1,t2, t3 where ((t1.a > 1 and t2.a > 2) or (t1.b < 3 and t2.b < 4)) and t3.a > 1
Expand Down

0 comments on commit 70b345e

Please sign in to comment.