Sign in
apache
/
hive
/
master
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
external2.q
blob: 0df85a09afdd545cfb509412792a9f373255c75e [
file
] [
log
] [
blame
]
create external table external2
(
a
int
,
b
int
)
partitioned
by
(
ds
string
);
alter table external2 add partition
(
ds
=
'2008-01-01'
)
location
'invalidscheme://data.s3ndemo.hive/pkv/2008-01-01'
;
describe external2 partition
(
ds
=
'2008-01-01'
);