Sign in
apache
/
hive
/
master
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
orc_reorder_columns1.q
blob: 516c170430875887b39e703c5ad0dc1b3171c0ae [
file
] [
log
] [
blame
]
SET hive
.
exec
.
schema
.
evolution
=
true
;
create table src_orc
(
key tinyint
,
val
string
)
stored
as
orc
;
alter table src_orc change key k tinyint first
;