Sign in
apache
/
hive
/
master
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
strict_timestamp_to_numeric3.q
blob: 46381357fdc681c779458a15b936ab5f77505a94 [
file
] [
log
] [
blame
]
set
hive
.
strict
.
timestamp
.
conversion
=
true
;
create table t
(
a
struct
<
t
:
timestamp
>);
select
cast
(
a
.
t
as
integer
)
from
t
;