Hashed IN only applied to first encountered IN

From: David Geier <geidav(dot)pg(at)gmail(dot)com>
To: pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Hashed IN only applied to first encountered IN
Date: 2025-04-01 11:51:18
Message-ID: 29a76f51-97b0-4c07-87b7-ec8e3b5345c9@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi hackers,

The hashed IN optimization is only applied to the first encountered
ScalarArrayOpExpr during the expression tree traversal in
convert_saop_to_hashed_saop_walker(). Reason being that the walker
returns true which aborts the traversal.

This can be exhibited by running a query with two IN statements vs the
same query with just a single IN statement. The IN statements are
combined via OR and both statements return no rows to prevent any kind
of lazy evaluation optimizations. The query with two IN statements is 6x
slower than the the query with the single IN statement. See the attached
example.

I've also attached a patch with a fix.

--
David Geier
(ServiceNow)

Attachment Content-Type Size
example.sql text/plain 2.3 KB
0001-Fixed-hashed-SAOP.patch text/plain 983 bytes

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Hayato Kuroda (Fujitsu) 2025-04-01 11:52:46 RE: Fix 035_standby_logical_decoding.pl race conditions
Previous Message Amit Kapila 2025-04-01 11:44:21 Re: Fix 035_standby_logical_decoding.pl race conditions