diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-02-20 11:10:59 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-02-20 11:10:59 +0100 |
commit | 74563f6b90216180fc13649725179fc119dddeb5 (patch) | |
tree | db420dbac5843e3ba963da90447b0b0533515a79 /doc/src | |
parent | d2ca9a50b5b99ef29aa65b68b5e6ddb253fbb04a (diff) | |
download | postgresql-74563f6b90216180fc13649725179fc119dddeb5.tar.gz postgresql-74563f6b90216180fc13649725179fc119dddeb5.zip |
Revert "Improve compression and storage support with inheritance"
This reverts commit 0413a556990ba628a3de8a0b58be020fd9a14ed0.
pg_dump cannot currently dump all the structures that are allowed by
this patch. This needs more work in pg_dump and more test coverage.
Discussion: https://www.postgresql.org/message-id/flat/24656cec-d6ef-4d15-8b5b-e8dfc9c833a7@eisentraut.org
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_table.sgml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index fb0e9873877..4cbaaccaf7c 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -398,13 +398,7 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM </para> <para> - Column storage and compression settings are inherited from parent - tables. If a column is inherited from multiple tables, the storage - settings or any explicit compression settings for the column must be the - same in all parent tables, else an error is reported. Storage or - compression settings explicitly specified for the new table override any - inherited settings and can also be used to override conflicting - inherited settings. + Column <literal>STORAGE</literal> settings are also copied from parent tables. </para> <para> |