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