diff options
author | David Rowley <drowley@postgresql.org> | 2023-07-09 16:15:52 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2023-07-09 16:15:52 +1200 |
commit | 571377dfb83d128a104ec2220aae7ca992e036b0 (patch) | |
tree | ee786553d217823272497d2108f06f56a24137f9 | |
parent | 75414c69899148156d87c337cec681c292a329e9 (diff) | |
download | postgresql-571377dfb83d128a104ec2220aae7ca992e036b0.tar.gz postgresql-571377dfb83d128a104ec2220aae7ca992e036b0.zip |
Doc: update old reference to "result cache"
During the PostgreSQL 14 cycle, the Memoize executor node was briefly
called "Result Cache" until it was renamed in 83f4fcc65. That commit
missed one reference.
Reported-by: Paul A Jungwirth
Packpatch-through: 14, where Memoize was added
Discussion: https://postgr.es/m/CA+renyX=40YXhsfPTzn13oNOPO3TJ12CK9GX-2P2pvnQiScefA@mail.gmail.com
-rw-r--r-- | doc/src/sgml/config.sgml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index be492578f46..53285ac3513 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1820,9 +1820,8 @@ include_dir 'conf.d' fact in mind when choosing the value. Sort operations are used for <literal>ORDER BY</literal>, <literal>DISTINCT</literal>, and merge joins. - Hash tables are used in hash joins, hash-based aggregation, result - cache nodes and hash-based processing of <literal>IN</literal> - subqueries. + Hash tables are used in hash joins, hash-based aggregation, memoize + nodes and hash-based processing of <literal>IN</literal> subqueries. </para> <para> Hash-based operations are generally more sensitive to memory |