pgsql: Propagate ALTER TABLE ... SET STORAGE to indexes

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Propagate ALTER TABLE ... SET STORAGE to indexes
Date: 2020-05-08 08:15:09
Message-ID: E1jWyA1-0005t6-1g@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Propagate ALTER TABLE ... SET STORAGE to indexes

When creating a new index, the attstorage setting of the table column
is copied to regular (non-expression) index columns. But a later
ALTER TABLE ... SET STORAGE is not propagated to indexes, thus
creating an inconsistent and undumpable state.

Discussion: https://www.postgresql.org/message-id/flat/9765d72b-37c0-06f5-e349-2a580aafd989%402ndquadrant.com

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/03a8a5f2d4a1f9886ad1d62d3f70424dfcdf8048

Modified Files
--------------
contrib/test_decoding/expected/toast.out | 4 +++
contrib/test_decoding/sql/toast.sql | 5 ++++
src/backend/commands/tablecmds.c | 48 +++++++++++++++++++++++++++++++
src/test/regress/expected/alter_table.out | 20 +++++++++++++
src/test/regress/sql/alter_table.sql | 6 ++++
5 files changed, 83 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2020-05-08 09:40:14 pgsql: Fix several DDL issues of generated columns versus inheritance
Previous Message Peter Eisentraut 2020-05-08 06:41:59 pgsql: Propagate ALTER TABLE ... SET STORAGE to indexes