Skip to content

Commit 954f91a

Browse files
committed
fix test
1 parent 1e16e54 commit 954f91a

File tree

6 files changed

+12
-4
lines changed

6 files changed

+12
-4
lines changed

tests/sqllogictests/suites/mode/cluster/memo/aggregate_property.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ where t_10.a = t_1000.a and t_100.a = t_1000.a
2626
----
2727
Memo
2828
├── root group: #8
29-
├── estimated memory: 12.09 KiB
29+
├── estimated memory: 9.84 KiB
3030
├── Group #0
3131
│ ├── Best properties
3232
│ │ ├── { dist: Any }: expr: #0, cost: 1000.000, children: []

tests/sqllogictests/suites/mode/cluster/memo/join_property.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ select * from t_10, t_100, t_1000 where t_10.a = t_1000.a and t_100.a = t_1000.a
2525
----
2626
Memo
2727
├── root group: #5
28-
├── estimated memory: 9.41 KiB
28+
├── estimated memory: 7.66 KiB
2929
├── Group #0
3030
│ ├── Best properties
3131
│ │ ├── { dist: Any }: expr: #0, cost: 1000.000, children: []

tests/sqllogictests/suites/mode/cluster/memo/mix_property.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ limit 10
2929
----
3030
Memo
3131
├── root group: #10
32-
├── estimated memory: 31.58 KiB
32+
├── estimated memory: 25.70 KiB
3333
├── Group #0
3434
│ ├── Best properties
3535
│ │ ├── { dist: Any }: expr: #0, cost: 1000.000, children: []

tests/sqllogictests/suites/mode/cluster/update.test

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ Fragment 0:
3131
├── output columns: []
3232
├── destination fragment: [1]
3333
└── MutationSource
34+
├── table: default.db1.t1
35+
├── output columns: [a (#0), b (#1), _predicate (#2)]
36+
├── filters: [is_true(t1.b (#1) > '2022-12-31')]
37+
├── read rows: 1
38+
├── read size: < 1 KiB
39+
├── partitions total: 2
40+
└── partitions scanned: 1
3441
(empty)
3542
(empty)
3643
Fragment 1:

tests/sqllogictests/suites/mode/standalone/explain/delete.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ query T
2020
explain delete from t1
2121
----
2222
CommitSink
23-
└── Mutation Source
23+
└── MutationSource
2424
├── table: default.default.t1
2525
├── output columns: [a (#0), b (#1)]
2626
├── filters: []

tests/sqllogictests/suites/mode/standalone/explain/update.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ explain analyze partial update t1 set a = a + 1 where a in (select a from t2) an
120120
----
121121
HashJoin: LEFT SEMI
122122
├── estimated rows: 2.00
123+
├── output rows: 2
123124
├── TableScan
124125
│ ├── table: default.default.t2
125126
│ ├── estimated rows: 2.00

0 commit comments

Comments
 (0)