Sign in
apache
/
hive
/
maven
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
column_rename5.q
blob: 3827b83361fbbe291a292652787398e798f7a79a [
file
] [
log
] [
blame
]
set
hive
.
mapred
.
supports
.
subdirectories
=
true
;
CREATE TABLE skewedtable
(
key STRING
,
value STRING
)
SKEWED BY
(
key
)
ON
(
1
,
5
,
6
);
ALTER TABLE skewedtable CHANGE key key_new STRING
;