Re: Prepared statements considered harmful - Mailing list pgsql-hackers

From Gregory Stark
Subject Re: Prepared statements considered harmful
Date
Msg-id 87k64on6lx.fsf@stark.enterprisedb.com
Whole thread Raw
In response to Prepared statements considered harmful  (Peter Eisentraut <peter_e@gmx.net>)
Responses Re: Prepared statements considered harmful
Re: Prepared statements considered harmful
List pgsql-hackers
Peter Eisentraut <peter_e@gmx.net> writes:

> - Redefine "prepared" to mean "parsed" rather than "parsed and planned".

Then you would be going very much against the user's expectations. 

Driver interfaces expose very clearly to the user an explicit interface to
prepare and execute a query separately. What your proposing is to go behind
the user's back and do what he's gone out of his way to tell you not to do.
You can always choose to prepare your queries immediately before use. Most
drivers even supply an interface to do so in a single step for convenience.

If you've gone to the trouble of saving the prepared query handle you very
much do NOT want the database spontaneously deciding to change the behaviour
of that query (even just the performance behaviour) without warning.

In fact somewhere down the list of my personal wishlist for Postgres is plan
stability which would let the DBA control exactly when plans could change.

--  Gregory Stark EnterpriseDB          http://www.enterprisedb.com


pgsql-hackers by date:

Previous
From: "Merlin Moncure"
Date:
Subject: Re: Prepared statements considered harmful
Next
From: "Magnus Hagander"
Date:
Subject: Re: gBorg status?