Sign in
apache
/
hive
/
master
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
nested_ctes_ambiguous_table.q
blob: 73bdef40ba3ca204329f016b40056c2d1686faf0 [
file
] [
log
] [
blame
]
with
test1
as
(
with
t1
as
(
select
1
as
a
),
t1
as
(
select
1
as
b
)
select
1
)
select
*
from
test1
;