pgsql: Relax transactional restrictions on ALTER TYPE ... ADD VALUE. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Relax transactional restrictions on ALTER TYPE ... ADD VALUE.
Date
Msg-id E1bgxFm-0005uI-1P@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Relax transactional restrictions on ALTER TYPE ... ADD VALUE.

To prevent possibly breaking indexes on enum columns, we must keep
uncommitted enum values from getting stored in tables, unless we
can be sure that any such column is new in the current transaction.

Formerly, we enforced this by disallowing ALTER TYPE ... ADD VALUE
from being executed at all in a transaction block, unless the target
enum type had been created in the current transaction.  This patch
removes that restriction, and instead insists that an uncommitted enum
value can't be referenced unless it belongs to an enum type created
in the same transaction as the value.  Per discussion, this should be
a bit less onerous.  It does require each function that could possibly
return a new enum value to SQL operations to check this restriction,
but there aren't so many of those that this seems unmaintainable.

Andrew Dunstan and Tom Lane

Discussion: <4075.1459088427@sss.pgh.pa.us>

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/15bc038f9bcd1a9af3f625caffafc7c20322202d

Modified Files
--------------
doc/src/sgml/ref/alter_type.sgml   |   6 ++-
src/backend/commands/typecmds.c    |  21 +-------
src/backend/tcop/utility.c         |   2 +-
src/backend/utils/adt/enum.c       | 104 +++++++++++++++++++++++++++++++++++++
src/backend/utils/errcodes.txt     |   1 +
src/include/commands/typecmds.h    |   2 +-
src/test/regress/expected/enum.out |  65 +++++++++++++++++++----
src/test/regress/sql/enum.sql      |  30 ++++++++---
8 files changed, 191 insertions(+), 40 deletions(-)


pgsql-committers by date:

Previous
From: Simon Riggs
Date:
Subject: pgsql: Add debug check function LWLockHeldByMeInMode()
Next
From: Bruce Momjian
Date:
Subject: pgsql: C comment: align dashes in GroupState node header