Skip to content

Commit e105e53

Browse files
committed
fix error testcase
1 parent 649f0dc commit e105e53

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/logictest/suites/base/01_system/01_0007_system_clustering_history.rs renamed to tests/logictest/suites/base/01_system/01_0007_system_clustering_history

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ insert into tbl_01_0007 values(4);
1616
statement ok
1717
alter table tbl_01_0007 recluster final where a != 4;
1818

19-
statement query TTII
20-
select database, table, reclustered_bytes, reclustered_rows from system.clustering_history;
19+
statement query II
20+
select reclustered_bytes, reclustered_rows from system.clustering_history where table = 'tbl_01_0007' limit 1;
2121

2222
----
23-
default tbl_01_0007 16 4
23+
16 4
2424

2525
statement ok
2626
drop table tbl_01_0007;

0 commit comments

Comments
 (0)