diff options
| author | Peter Eisentraut <peter@eisentraut.org> | 2020-11-07 12:11:40 +0100 |
|---|---|---|
| committer | Peter Eisentraut <peter@eisentraut.org> | 2020-11-07 12:26:24 +0100 |
| commit | b4c9695e79f79d39d55853acac4c1493ac70a529 (patch) | |
| tree | b37ed8dd8bcaba8989a6ade98ce52265fc6f50f0 /src/include/catalog/pg_partitioned_table.h | |
| parent | 623644f02cbde7ad3812b201bd36213a206c3341 (diff) | |
| download | postgresql-b4c9695e79f79d39d55853acac4c1493ac70a529.tar.gz | |
Move catalog toast table declarations
Move the system catalog toast table declarations from
catalog/toasting.h to the respective parent tables' catalog/pg_*.h
files. The original reason for having it split was that the old
genbki system produced the output in the order of the catalog files it
read, so all the toasting stuff needed to come separately. But this
is no longer the case, and keeping it together makes more sense.
Reviewed-by: John Naylor <john.naylor@enterprisedb.com>
Discussion: https://www.postgresql.org/message-id/flat/c7cc82d6-f976-75d6-2e3e-b03d2cab26bb@2ndquadrant.com
Diffstat (limited to 'src/include/catalog/pg_partitioned_table.h')
| -rw-r--r-- | src/include/catalog/pg_partitioned_table.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/catalog/pg_partitioned_table.h b/src/include/catalog/pg_partitioned_table.h index 7ee0419373..cf92234d7e 100644 --- a/src/include/catalog/pg_partitioned_table.h +++ b/src/include/catalog/pg_partitioned_table.h @@ -64,4 +64,6 @@ CATALOG(pg_partitioned_table,3350,PartitionedRelationId) */ typedef FormData_pg_partitioned_table *Form_pg_partitioned_table; +DECLARE_TOAST(pg_partitioned_table, 4165, 4166); + #endif /* PG_PARTITIONED_TABLE_H */ |
