-
Notifications
You must be signed in to change notification settings - Fork 752
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
37 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
tests/suites/0_stateless/09_fuse_engine/09_0014_func_clustering_information_function.result
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
show value of table being cloned | ||
1 1 | ||
2 1 | ||
0 3 | ||
1 3 | ||
4 4 | ||
(b, a) 3 1 0.6667 1.6667 {"00001":1,"00002":2} |
19 changes: 0 additions & 19 deletions
19
tests/suites/0_stateless/09_fuse_engine/09_0014_func_clustering_information_function.sh
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
tests/suites/0_stateless/09_fuse_engine/09_0014_func_clustering_information_function.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
-- Create table t09_0014 | ||
create table t09_0014(a int, b int) cluster by(b,a); | ||
|
||
insert into t09_0014 values(0,3),(1,1); | ||
insert into t09_0014 values(1,3),(2,1); | ||
insert into t09_0014 values(4,4); | ||
|
||
select * from t09_0014 order by b, a; | ||
|
||
--Bug in cluster mode: https://github.com/datafuselabs/databend/issues/5473 | ||
--select * from clustering_information('default','t09_0014'); | ||
|
||
-- Drop table. | ||
drop table t09_0014; |