From 93a57c3b57530c11429815260a8b67269394c8b3 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 16 Feb 2010 20:15:14 +0000 Subject: Clarify documentation on the behavior of unnamed bind queries. --- src/backend/tcop/postgres.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 8d33000e616..15d0808ad24 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.588 2010/02/13 01:32:19 sriggs Exp $ + * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.589 2010/02/16 20:15:14 momjian Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1469,7 +1469,7 @@ exec_bind_message(StringInfo input_message) } else { - /* special-case the unnamed statement */ + /* Unnamed statements are re-prepared for every bind */ psrc = unnamed_stmt_psrc; if (!psrc) ereport(ERROR, -- cgit v1.2.3