Sign in
apache
/
hive
/
maven
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
invalid_select_column_with_tablename.q
blob: b821e6129a7bfe9e09da30cefd365e3455a51904 [
file
] [
log
] [
blame
]
--
Create
table
create table
if
not
exists test_invalid_column
(
key
string
,
value
string
)
partitioned
by
(
year
string
,
month
string
)
stored
as
textfile
;
select
*
from
test_invalid_column
where
test_invalid_column
=
123
;