ClickHouse/tests/queries/0_stateless/01124_view_bad_types.sql
2020-04-13 00:07:11 +03:00

12 lines
345 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 ORDER BY x;
DROP TABLE test.view;
DROP TABLE test.table;