pgsql: Move CloneForeignKeyConstraints to tablecmds.c

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема pgsql: Move CloneForeignKeyConstraints to tablecmds.c
Дата
Msg-id E1gkYYC-0005Hb-Rt@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Move CloneForeignKeyConstraints to tablecmds.c

My commit 3de241dba86f introduced some code to create a clone of a
foreign key to a partition, but I put it in pg_constraint.c because it
was too close to the contents of the pg_constraint row.  With the
previous commit that split out the constraint tuple deconstruction into
its own routine, it makes more sense to have the FK-cloning function in
tablecmds.c, mostly because its static subroutine can then be used by a
future bugfix.

My initial posting of this patch had this routine as static in
tablecmds.c, but sadly this function is already part of the Postgres 11
ABI as exported from pg_constraint.c, so keep it as exported also just
to avoid breaking any possible users of it.

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/fca6cabed17c4960224408d44e3d384b560b78f5

Modified Files
--------------
src/backend/catalog/pg_constraint.c | 302 -----------------------------------
src/backend/commands/tablecmds.c    | 305 ++++++++++++++++++++++++++++++++++++
src/include/catalog/pg_constraint.h |   3 -
src/include/commands/tablecmds.h    |   2 +
4 files changed, 307 insertions(+), 305 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Avoid sometimes printing both tables and their columns in DROPC
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Use our own getopt() on OpenBSD.