Sign in
apache
/
hive
/
maven
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
invalid_select_column.q
blob: 106ba422131974ad8923f090e679d35110b46525 [
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
column1
=
123
;