Sign in
apache
/
hive
/
master
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
join_using_clause_ambiguous_table.q
blob: 19c3f6fc3916d440b365db8783b7e37b648a94a7 [
file
] [
log
] [
blame
]
create table test
(
a
int
);
select
*
from
test
join test
using
(
a
)
join test
using
(
a
);