summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2017-09-27 16:14:37 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2017-09-27 16:14:37 -0400
commit93a1af0b3f63838774a9e524589344c3d44c867d (patch)
treee12c9d5a1331dd100a8a15b72962732e41dd03a6 /doc/src
parent4d5d08c1cd52add02bdfadc00854135a3b6c88f6 (diff)
Revert to 9.6 treatment of ALTER TYPE enumtype ADD VALUE.
This reverts commit 15bc038f9, along with the followon commits 1635e80d3 and 984c92074 that tried to clean up the problems exposed by bug #14825. The result was incomplete because it failed to address parallel-query requirements. With 10.0 release so close upon us, now does not seem like the time to be adding more code to fix that. I hope we can un-revert this code and add the missing parallel query support during the v11 cycle. Back-patch to v10. Discussion: https://postgr.es/m/20170922185904.1448.16585@wrigleys.postgresql.org
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/alter_type.sgml5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/alter_type.sgml b/doc/src/sgml/ref/alter_type.sgml
index 7e2258e1e34..4027c1b8f7d 100644
--- a/doc/src/sgml/ref/alter_type.sgml
+++ b/doc/src/sgml/ref/alter_type.sgml
@@ -290,9 +290,8 @@ ALTER TYPE <replaceable class="PARAMETER">name</replaceable> RENAME VALUE <repla
<title>Notes</title>
<para>
- If <command>ALTER TYPE ... ADD VALUE</> (the form that adds a new value to
- an enum type) is executed inside a transaction block, the new value cannot
- be used until after the transaction has been committed.
+ <command>ALTER TYPE ... ADD VALUE</> (the form that adds a new value to an
+ enum type) cannot be executed inside a transaction block.
</para>
<para>