Nikita Fomichev 2024-04-03 17:10:10 +02:00
parent 346a0ec53b
commit 39205fe676
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
-- https://github.com/ClickHouse/ClickHouse/issues/61014
create database test_03088;
create table test_03088.a (i int) engine = Log();
select
test_03088.a.i
from
test_03088.a,
test_03088.a as x;