mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Add a test for #4476
This commit is contained in:
parent
e31a9c42e6
commit
6e1bd79d51
@ -0,0 +1,2 @@
|
||||
[0,1,2,3,4,5,6,7,8,9]
|
||||
['0','1','2','3','4','5','6','7','8','9']
|
11
tests/queries/0_stateless/01504_view_type_conversion.sql
Normal file
11
tests/queries/0_stateless/01504_view_type_conversion.sql
Normal file
@ -0,0 +1,11 @@
|
||||
DROP TABLE IF EXISTS testv;
|
||||
|
||||
create view testv(a UInt32) as select number a from numbers(10);
|
||||
select groupArray(a) from testv;
|
||||
|
||||
DROP TABLE testv;
|
||||
|
||||
create view testv(a String) as select number a from numbers(10);
|
||||
select groupArray(a) from testv;
|
||||
|
||||
DROP TABLE testv;
|
Loading…
Reference in New Issue
Block a user