Sign in
apache
/
hive
/
maven
/
.
/
ql
/
src
/
test
/
queries
/
clientnegative
/
compare_string_bigint.q
blob: 810f65d4d2b448b99cdb8907c016e36b1d9e276e [
file
] [
log
] [
blame
]
set
hive
.
mapred
.
mode
=
strict
;
--
This
should fail
until
we fix the issue
with
precision
when
casting a bigint to a
double
select
*
from
src
where
cast
(
1
as
bigint
)
=
'1'
limit
10
;