ClickHouse/tests/queries/0_stateless/03104_create_view_join.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
586 B
MySQL
Raw Normal View History

-- https://github.com/ClickHouse/ClickHouse/issues/11000
DROP TABLE IF EXISTS test_table_01;
DROP TABLE IF EXISTS test_table_02;
DROP TABLE IF EXISTS test_view_01;
2024-07-12 12:49:26 +00:00
SET enable_analyzer = 1;
CREATE TABLE test_table_01 (
column Int32
) ENGINE = Memory();
CREATE TABLE test_table_02 (
column Int32
) ENGINE = Memory();
CREATE VIEW test_view_01 AS
2024-07-12 12:49:26 +00:00
SELECT
t1.column,
t2.column
2024-07-12 12:49:26 +00:00
FROM test_table_01 AS t1
INNER JOIN test_table_02 AS t2 ON t1.column = t2.column;
DROP TABLE IF EXISTS test_table_01;
DROP TABLE IF EXISTS test_table_02;
2024-07-12 12:49:26 +00:00
DROP TABLE IF EXISTS test_view_01;