aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/select/anon_clash.sql
blob: b4b62d51cfbe278d6d4c0d5a9f8b4a572439a2ba (plain) (blame)
1
2
3
4
5
6
7
8
9
/* custom error: Table "a" does not exist */
use plato;

insert into @a select 1 as t;

commit;

select * from @a;
select * from a;