ClickHouse/dbms/tests/queries/bugs/view_bad_types.sql
2018-12-29 03:31:49 +03:00

12 lines
334 B
SQL

DROP TABLE IF EXISTS test.table;
CREATE TABLE test.table (x UInt16) ENGINE = TinyLog;
INSERT INTO test.table SELECT * FROM system.numbers LIMIT 10;
DROP TABLE IF EXISTS test.view;
CREATE VIEW test.view (x UInt64) AS SELECT * FROM test.table;
SELECT x, any(x) FROM test.view GROUP BY x;
DROP TABLE test.view;
DROP TABLE test.table;