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