mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Fix test
This commit is contained in:
parent
1fef195d68
commit
41588b05cf
@ -20,98 +20,6 @@
|
||||
4
|
||||
0
|
||||
1
|
||||
4
|
||||
3
|
||||
2
|
||||
0
|
||||
1
|
||||
4
|
||||
3
|
||||
2
|
||||
[4]
|
||||
[3]
|
||||
[2]
|
||||
[0]
|
||||
[1]
|
||||
{'str':0}
|
||||
{'str':1}
|
||||
{'str':4}
|
||||
{'str':3}
|
||||
{'str':2}
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
\N
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
4
|
||||
3
|
||||
2
|
||||
0
|
||||
1
|
||||
4
|
||||
3
|
||||
2
|
||||
[4]
|
||||
[3]
|
||||
[2]
|
||||
[0]
|
||||
[1]
|
||||
{'str':0}
|
||||
{'str':1}
|
||||
{'str':4}
|
||||
{'str':3}
|
||||
{'str':2}
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
\N
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
@ -120,11 +28,11 @@
|
||||
2
|
||||
3
|
||||
4
|
||||
[4]
|
||||
[0]
|
||||
[1]
|
||||
[2]
|
||||
[3]
|
||||
[4]
|
||||
{'str':0}
|
||||
{'str':1}
|
||||
{'str':2}
|
||||
@ -166,11 +74,103 @@
|
||||
2
|
||||
3
|
||||
4
|
||||
[4]
|
||||
[0]
|
||||
[1]
|
||||
[2]
|
||||
[3]
|
||||
[4]
|
||||
{'str':0}
|
||||
{'str':1}
|
||||
{'str':2}
|
||||
{'str':3}
|
||||
{'str':4}
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
\N
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
[0]
|
||||
[1]
|
||||
[2]
|
||||
[3]
|
||||
[4]
|
||||
{'str':0}
|
||||
{'str':1}
|
||||
{'str':2}
|
||||
{'str':3}
|
||||
{'str':4}
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
\N
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
[0]
|
||||
[1]
|
||||
[2]
|
||||
[3]
|
||||
[4]
|
||||
{'str':0}
|
||||
{'str':1}
|
||||
{'str':2}
|
||||
|
@ -53,10 +53,10 @@ select * from test order by tuple(d);
|
||||
select * from test order by array(d);
|
||||
select * from test order by map('str', d);
|
||||
|
||||
select * from test group by d;
|
||||
select * from test group by tuple(d);
|
||||
select array(d) from test group by array(d);
|
||||
select map('str', d) from test group by map('str', d);
|
||||
select * from test group by d order by all;
|
||||
select * from test group by tuple(d) order by all;
|
||||
select array(d) from test group by array(d) order by all;
|
||||
select map('str', d) from test group by map('str', d) order by all;
|
||||
select * from test group by grouping sets ((d), ('str')) order by all;
|
||||
|
||||
set allow_experimental_analyzer=0;
|
||||
@ -86,10 +86,10 @@ select * from test order by tuple(d);
|
||||
select * from test order by array(d);
|
||||
select * from test order by map('str', d);
|
||||
|
||||
select * from test group by d;
|
||||
select * from test group by tuple(d);
|
||||
select array(d) from test group by array(d);
|
||||
select map('str', d) from test group by map('str', d);
|
||||
select * from test group by d order by all;
|
||||
select * from test group by tuple(d) order by all;
|
||||
select array(d) from test group by array(d) order by all;
|
||||
select map('str', d) from test group by map('str', d) order by all;
|
||||
select * from test group by grouping sets ((d), ('str')) order by all;
|
||||
|
||||
drop table test;
|
||||
@ -124,10 +124,10 @@ select * from test order by tuple(d);
|
||||
select * from test order by array(d);
|
||||
select * from test order by map('str', d);
|
||||
|
||||
select * from test group by d;
|
||||
select * from test group by tuple(d);
|
||||
select array(d) from test group by array(d);
|
||||
select map('str', d) from test group by map('str', d);
|
||||
select * from test group by d order by all;
|
||||
select * from test group by tuple(d) order by all;
|
||||
select array(d) from test group by array(d) order by all;
|
||||
select map('str', d) from test group by map('str', d) order by all;
|
||||
select * from test group by grouping sets ((d), ('str')) order by all;
|
||||
|
||||
set allow_experimental_analyzer=0;
|
||||
@ -157,10 +157,10 @@ select * from test order by tuple(d);
|
||||
select * from test order by array(d);
|
||||
select * from test order by map('str', d);
|
||||
|
||||
select * from test group by d;
|
||||
select * from test group by tuple(d);
|
||||
select array(d) from test group by array(d);
|
||||
select map('str', d) from test group by map('str', d);
|
||||
select * from test group by d order by all;
|
||||
select * from test group by tuple(d) order by all;
|
||||
select array(d) from test group by array(d) order by all;
|
||||
select map('str', d) from test group by map('str', d) order by all;
|
||||
select * from test group by grouping sets ((d), ('str')) order by all;
|
||||
|
||||
drop table test;
|
||||
|
Loading…
Reference in New Issue
Block a user