Sign in
◑
Theme
apache
/
datafusion
/
refs/heads/fix-disable-migration-aggregate-default
/
.
/
benchmarks
/
sql_benchmarks
/
predicate_eval
/
queries
/
neutral
/
q60.sql
blob: b217f56953272347d518e3fdb5c2b591fbc5f788 [
file
]
-- Hidden: four integer compares of equal cost, each ~50% selective. Nothing is
-- selective and the costs are equal, so the predicates are interchangeable.
SELECT
count
(*)
FROM
t
WHERE
c0
<
50
AND
c1
<
50
AND
c2
<
50
AND
c3
<
50
;