PREPARE and GUC plan_cache_mode - Mailing list pgsql-docs

From Bruce Momjian
Subject PREPARE and GUC plan_cache_mode
Date
Msg-id 20190930155505.GA21095@momjian.us
Whole thread Raw
Responses Re: PREPARE and GUC plan_cache_mode  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-docs
Our current docs have this text for PREPARE:

       Prepared statements can use generic plans rather than re-planning
       with each set of supplied EXECUTE values. This occurs immediately
       for prepared statements with no parameters; otherwise it occurs
       only after five or more executions produce plans whose estimated
       cost average (including planning overhead) is more expensive than
       the generic plan cost estimate. Once a generic plan is chosen, it
       is used for the remaining lifetime of the prepared statement. Using
       EXECUTE values which are rare in columns with many duplicates can
       generate custom plans that are so much cheaper than the generic
       plan, even after adding planning overhead, that the generic plan
       might never be used.

There is no mention that PG 12's plan_cache_mode can modify this
behavior.  I think this needs a doc patch.

-- 
  Bruce Momjian  <bruce@momjian.us>        http://momjian.us
  EnterpriseDB                             http://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +



pgsql-docs by date:

Previous
From: PG Doc comments form
Date:
Subject: Logical replication conflict and trying to use `pg_replication_origin_advance`
Next
From: Tom Lane
Date:
Subject: Re: PREPARE and GUC plan_cache_mode