Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
joins
/
explicit_cast
/
on_c_double_and_c_bigint.sql
blob: 2af0647de4bed0840a59323b8169ed6cb2c1d337 [
file
] [
log
] [
blame
]
select
count
(*)
from
cast_tbl_1 a
,
cast_tbl_2 b
where
a
.
c_integer
=
b
.
c_integer
AND
a
.
c_double
<>
CAST
(
b
.
c_bigint
as
DOUBLE
PRECISION
);