blob: d8d70fb828943486d2a964487554414bc8461145 [file] [log] [blame]
select
count(*)
from
j1 INNER JOIN j2 ON
(
j1.c_float = j2.c_float
)
where
j1.c_bigint IS NOT DISTINCT FROM j2.c_bigint
and j1.c_float IS NOT NULL
;