@@ -156,32 +156,32 @@ CREATE TABLE ctlt4 (a text, c text);
156156ALTER TABLE ctlt4 ALTER COLUMN c SET STORAGE EXTERNAL;
157157CREATE TABLE ctlt12_storage (LIKE ctlt1 INCLUDING STORAGE, LIKE ctlt2 INCLUDING STORAGE);
158158\d+ ctlt12_storage
159- Table "public.ctlt12_storage"
160- Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
161- --------+------+-----------+----------+---------+----------+--------------+-------------
162- a | text | | not null | | main | |
163- b | text | | | | extended | |
164- c | text | | | | external | |
159+ Table "public.ctlt12_storage"
160+ Column | Type | Collation | Nullable | Default | Storage |Compression | Stats target | Description
161+ --------+------+-----------+----------+---------+----------+-------------+------------- -+-------------
162+ a | text | | not null | | main || |
163+ b | text | | | | extended || |
164+ c | text | | | | external || |
165165
166166CREATE TABLE ctlt12_comments (LIKE ctlt1 INCLUDING COMMENTS, LIKE ctlt2 INCLUDING COMMENTS);
167167\d+ ctlt12_comments
168- Table "public.ctlt12_comments"
169- Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
170- --------+------+-----------+----------+---------+----------+--------------+-------------
171- a | text | | not null | | extended | | A
172- b | text | | | | extended | | B
173- c | text | | | | extended | | C
168+ Table "public.ctlt12_comments"
169+ Column | Type | Collation | Nullable | Default | Storage |Compression | Stats target | Description
170+ --------+------+-----------+----------+---------+----------+-------------+------------- -+-------------
171+ a | text | | not null | | extended || | A
172+ b | text | | | | extended || | B
173+ c | text | | | | extended || | C
174174
175175CREATE TABLE ctlt1_inh (LIKE ctlt1 INCLUDING CONSTRAINTS INCLUDING COMMENTS) INHERITS (ctlt1);
176176NOTICE: merging column "a" with inherited definition
177177NOTICE: merging column "b" with inherited definition
178178NOTICE: merging constraint "ctlt1_a_check" with inherited definition
179179\d+ ctlt1_inh
180- Table "public.ctlt1_inh"
181- Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
182- --------+------+-----------+----------+---------+----------+--------------+-------------
183- a | text | | not null | | main | | A
184- b | text | | | | extended | | B
180+ Table "public.ctlt1_inh"
181+ Column | Type | Collation | Nullable | Default | Storage |Compression | Stats target | Description
182+ --------+------+-----------+----------+---------+----------+-------------+------------- -+-------------
183+ a | text | | not null | | main || | A
184+ b | text | | | | extended || | B
185185Check constraints:
186186 "ctlt1_a_check" CHECK (length(a) > 2)
187187Inherits: ctlt1
@@ -195,12 +195,12 @@ SELECT description FROM pg_description, pg_constraint c WHERE classoid = 'pg_con
195195CREATE TABLE ctlt13_inh () INHERITS (ctlt1, ctlt3);
196196NOTICE: merging multiple inherited definitions of column "a"
197197\d+ ctlt13_inh
198- Table "public.ctlt13_inh"
199- Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
200- --------+------+-----------+----------+---------+----------+--------------+-------------
201- a | text | | not null | | main | |
202- b | text | | | | extended | |
203- c | text | | | | external | |
198+ Table "public.ctlt13_inh"
199+ Column | Type | Collation | Nullable | Default | Storage |Compression | Stats target | Description
200+ --------+------+-----------+----------+---------+----------+-------------+------------- -+-------------
201+ a | text | | not null | | main || |
202+ b | text | | | | extended || |
203+ c | text | | | | external || |
204204Check constraints:
205205 "ctlt1_a_check" CHECK (length(a) > 2)
206206 "ctlt3_a_check" CHECK (length(a) < 5)
@@ -210,12 +210,12 @@ Inherits: ctlt1,
210210CREATE TABLE ctlt13_like (LIKE ctlt3 INCLUDING CONSTRAINTS INCLUDING COMMENTS INCLUDING STORAGE) INHERITS (ctlt1);
211211NOTICE: merging column "a" with inherited definition
212212\d+ ctlt13_like
213- Table "public.ctlt13_like"
214- Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
215- --------+------+-----------+----------+---------+----------+--------------+-------------
216- a | text | | not null | | main | | A3
217- b | text | | | | extended | |
218- c | text | | | | external | | C
213+ Table "public.ctlt13_like"
214+ Column | Type | Collation | Nullable | Default | Storage |Compression | Stats target | Description
215+ --------+------+-----------+----------+---------+----------+-------------+------------- -+-------------
216+ a | text | | not null | | main || | A3
217+ b | text | | | | extended || |
218+ c | text | | | | external || | C
219219Check constraints:
220220 "ctlt1_a_check" CHECK (length(a) > 2)
221221 "ctlt3_a_check" CHECK (length(a) < 5)
@@ -229,11 +229,11 @@ SELECT description FROM pg_description, pg_constraint c WHERE classoid = 'pg_con
229229
230230CREATE TABLE ctlt_all (LIKE ctlt1 INCLUDING ALL);
231231\d+ ctlt_all
232- Table "public.ctlt_all"
233- Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
234- --------+------+-----------+----------+---------+----------+--------------+-------------
235- a | text | | not null | | main | | A
236- b | text | | | | extended | | B
232+ Table "public.ctlt_all"
233+ Column | Type | Collation | Nullable | Default | Storage |Compression | Stats target | Description
234+ --------+------+-----------+----------+---------+----------+-------------+------------- -+-------------
235+ a | text | | not null | | main || | A
236+ b | text | | | | extended || | B
237237Indexes:
238238 "ctlt_all_pkey" PRIMARY KEY, btree (a)
239239 "ctlt_all_b_idx" btree (b)