From: | Thomas Munro <tmunro(at)postgresql(dot)org> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Relax transactional restrictions on ALTER TYPE ... ADD VALUE (re |
Date: | 2018-10-08 23:53:08 |
Message-ID: | E1g9fKm-00054P-JV@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Relax transactional restrictions on ALTER TYPE ... ADD VALUE (redux).
Originally committed as 15bc038f (plus some follow-ups), this was
reverted in 28e07270 due to a problem discovered in parallel
workers. This new version corrects that problem by sending the
list of uncommitted enum values to parallel workers.
Here follows the original commit message describing the change:
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.
Author: Andrew Dunstan and Tom Lane, with parallel query fix by Thomas Munro
Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/CAEepm%3D0Ei7g6PaNTbcmAh9tCRahQrk%3Dr5ZWLD-jr7hXweYX3yg%40mail.gmail.com
Discussion: https://postgr.es/m/4075.1459088427%40sss.pgh.pa.us
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/212fab9926b2f0f04b0187568e7124b70e8deee5
Modified Files
--------------
doc/src/sgml/ref/alter_type.sgml | 5 +-
src/backend/access/transam/parallel.c | 20 ++++-
src/backend/access/transam/xact.c | 4 +
src/backend/catalog/pg_enum.c | 139 ++++++++++++++++++++++++++++++++++
src/backend/commands/typecmds.c | 29 +------
src/backend/tcop/utility.c | 2 +-
src/backend/utils/adt/enum.c | 90 ++++++++++++++++++++++
src/backend/utils/errcodes.txt | 1 +
src/include/catalog/pg_enum.h | 5 ++
src/include/commands/typecmds.h | 2 +-
src/test/regress/expected/enum.out | 78 ++++++++++++++++---
src/test/regress/sql/enum.sql | 42 +++++++---
12 files changed, 367 insertions(+), 50 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Paquier | 2018-10-09 03:23:11 | Re: pgsql: Fix event triggers for partitioned tables |
Previous Message | Tom Lane | 2018-10-08 23:16:27 | pgsql: Fix omissions in snprintf.c's coverage of standard *printf funct |