aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2022-09-15 09:41:32 +1200
committerDavid Rowley <drowley@postgresql.org>2022-09-15 09:41:32 +1200
commitd068b4108c2e8eda9dbc9fffb7055334c62c4f6a (patch)
tree55edd289f243e6689d39c5d62afedee1650c370e /src
parent12a5214df4b784e793958c931c07836606efac9b (diff)
downloadpostgresql-d068b4108c2e8eda9dbc9fffb7055334c62c4f6a.tar.gz
postgresql-d068b4108c2e8eda9dbc9fffb7055334c62c4f6a.zip
Fix outdated convert_saop_to_hashed_saop comment
In 29f45e299, we added support for optimizing the execution of NOT IN(values) by using a hash table instead of a linear search over the array. That commit neglected to update the header comment for convert_saop_to_hashed_saop() to mention this fact. Here we fix that. Author: James Coleman Discussion: https://postgr.es/m/CAAaqYe99NUpAPcxgchGstgM23fmiGjqQPot8627YgkBgNt=BfA@mail.gmail.com Backpatch-through: 15, where 29f45e299 was added.
Diffstat (limited to 'src')
-rw-r--r--src/backend/optimizer/util/clauses.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/optimizer/util/clauses.c b/src/backend/optimizer/util/clauses.c
index 5c54171fee0..bf3a7cae60a 100644
--- a/src/backend/optimizer/util/clauses.c
+++ b/src/backend/optimizer/util/clauses.c
@@ -2117,7 +2117,8 @@ eval_const_expressions(PlannerInfo *root, Node *node)
*
* We'll use a hash table if all of the following conditions are met:
* 1. The 2nd argument of the array contain only Consts.
- * 2. useOr is true.
+ * 2. useOr is true or there is a valid negator operator for the
+ * ScalarArrayOpExpr's opno.
* 3. There's valid hash function for both left and righthand operands and
* these hash functions are the same.
* 4. If the array contains enough elements for us to consider it to be