Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xudong963 committed Oct 18, 2022
1 parent 9bb542d commit f16d907
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 18 deletions.
16 changes: 7 additions & 9 deletions tests/logictest/suites/mode/standalone/explain/limit.test
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,13 @@ Limit
│ │ ├── partitions total: 1
│ │ ├── partitions scanned: 1
│ │ └── push downs: [filters: [], limit: NONE]
│ └── Filter(Probe)
│ ├── filters: [=(subquery_2 (#2), t2.number (#2))]
│ └── TableScan
│ ├── table: default.system.numbers
│ ├── read rows: 1
│ ├── read bytes: 8
│ ├── partitions total: 1
│ ├── partitions scanned: 1
│ └── push downs: [filters: [(number = number)], limit: NONE]
│ └── TableScan(Probe)
│ ├── table: default.system.numbers
│ ├── read rows: 1
│ ├── read bytes: 8
│ ├── partitions total: 1
│ ├── partitions scanned: 1
│ └── push downs: [filters: [], limit: NONE]
└── HashJoin(Probe)
├── join type: CROSS
├── build keys: []
Expand Down
16 changes: 7 additions & 9 deletions tests/logictest/suites/mode/standalone/explain/subquery.test
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,13 @@ Filter
│ │ ├── partitions total: 1
│ │ ├── partitions scanned: 1
│ │ └── push downs: [filters: [], limit: NONE]
│ └── Filter(Probe)
│ ├── filters: [=(subquery_2 (#2), t2.number (#2))]
│ └── TableScan
│ ├── table: default.system.numbers
│ ├── read rows: 1
│ ├── read bytes: 8
│ ├── partitions total: 1
│ ├── partitions scanned: 1
│ └── push downs: [filters: [(number = number)], limit: NONE]
│ └── TableScan(Probe)
│ ├── table: default.system.numbers
│ ├── read rows: 1
│ ├── read bytes: 8
│ ├── partitions total: 1
│ ├── partitions scanned: 1
│ └── push downs: [filters: [], limit: NONE]
└── HashJoin(Probe)
├── join type: CROSS
├── build keys: []
Expand Down

0 comments on commit f16d907

Please sign in to comment.