Add a test for #43003

This commit is contained in:
Alexey Milovidov 2024-07-01 00:32:39 +02:00
parent 20f39c64ec
commit aa7017a7fb
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
SET allow_experimental_analyzer = 1;
DROP TABLE IF EXISTS table_with_materialized;
CREATE TABLE table_with_materialized (col String MATERIALIZED 'A') ENGINE = Memory;
SELECT number FROM numbers(1) AS n, table_with_materialized;
DROP TABLE table_with_materialized;