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