pgsql: pg_stat_statements forgot to let previous occupant of hook get c

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: pg_stat_statements forgot to let previous occupant of hook get c
Date: 2014-04-21 17:28:30
Message-ID: E1WcI18-0003gT-K3@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

pg_stat_statements forgot to let previous occupant of hook get control too.

pgss_post_parse_analyze() neglected to pass the call on to any earlier
occupant of the post_parse_analyze_hook. There are no other users of that
hook in contrib/, and most likely none in the wild either, so this is
probably just a latent bug. But it's a bug nonetheless, so back-patch
to 9.2 where this code was introduced.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/78a3c9b6a5f6cc84abaf4e13deb58c620eb2161b

Modified Files
--------------
contrib/pg_stat_statements/pg_stat_statements.c | 3 +++
1 file changed, 3 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2014-04-22 07:53:28 pgsql: Avoid transient bogus page contents when creating a sequence.
Previous Message Robert Haas 2014-04-20 14:33:19 pgsql: Fix another typo.