Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
leiysky committed Aug 30, 2022
1 parent 180eb00 commit 1853224
Showing 1 changed file with 26 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,28 +137,33 @@ explain select * from t left join t1 on t.a = t1.a limit 1,2;

----
Limit
├── limit: [2]
├── offset: [1]
└── HashJoin: LEFT OUTER
├── limit: 2
├── offset: 1
└── HashJoin
├── join type: LEFT OUTER
├── build keys: [t1.a (#1)]
├── probe keys: [CAST(t.a (#0) AS INT NULL)]
├── other filters: []
├── Limit
│ ├── limit: [2]
│ ├── offset: [1]
│ └── PhysicalScan
│ ├── table: default.default.t
│ ├── filters: []
│ ├── order by: []
│ └── limit: 3
└── Limit
├── limit: [2]
├── offset: [1]
└── PhysicalScan
├── table: default.default.t1
├── filters: []
├── order by: []
└── limit: 3
├── filters: []
├── Limit(Build)
│ ├── limit: 2
│ ├── offset: 1
│ └── TableScan
│ ├── table: default.default.t1
│ ├── read rows: 2
│ ├── read bytes: 31
│ ├── partitions total: 1
│ ├── partitions scanned: 1
│ └── push downs: [filters: [], limit: 3]
└── Limit(Probe)
├── limit: 2
├── offset: 1
└── TableScan
├── table: default.default.t
├── read rows: 1
├── read bytes: 27
├── partitions total: 1
├── partitions scanned: 1
└── push downs: [filters: [], limit: 3]

statement query II
select * from t left join t1 on t.a = t1.a limit 1;
Expand All @@ -171,3 +176,4 @@ drop table if exists t;

statement ok
drop table if exists t1;

0 comments on commit 1853224

Please sign in to comment.