Basic query optimization question- does Postgres process
x IN (y1, y2)as fast as (x = y1 OR x = y2)
in a function?