pgsql: Fix pg_get_serial_sequence(), which could incorrectly return the

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix pg_get_serial_sequence(), which could incorrectly return the
Date: 2006-11-10 22:59:29
Message-ID: 20061110225929.464C09FA47C@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Fix pg_get_serial_sequence(), which could incorrectly return the name
of an index on a serial column, rather than the name of the associated
sequence. Fallout from recent changes in dependency setup for serials.
Per bug #2732 from Basil Evseenko.

Modified Files:
--------------
pgsql/src/backend/utils/adt:
ruleutils.c (r1.234 -> r1.235)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/ruleutils.c.diff?r1=1.234&r2=1.235)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2006-11-11 01:14:19 pgsql: Suppress a few 'uninitialized variable' warnings that gcc emits
Previous Message Tom Lane 2006-11-10 22:32:21 pgsql: Clean up some misleading references to %p being a full path, per