pgsql: Move BuildDescForRelation() from tupdesc.c to tablecmds.c

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема pgsql: Move BuildDescForRelation() from tupdesc.c to tablecmds.c
Дата
Msg-id E1qoPRf-000BDE-6z@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Move BuildDescForRelation() from tupdesc.c to tablecmds.c

BuildDescForRelation() main job is to convert ColumnDef lists to
pg_attribute/tuple descriptor arrays, which is really mostly an
internal subroutine of DefineRelation() and some related functions,
which is more the remit of tablecmds.c and doesn't have much to do
with the basic tuple descriptor interfaces in tupdesc.c.  This is also
supported by observing the header includes we can remove in tupdesc.c.
By moving it over, we can also (in the future) make
BuildDescForRelation() use more internals of tablecmds.c that are not
sensible to be exposed in tupdesc.c.

Discussion: https://www.postgresql.org/message-id/flat/52a125e4-ff9a-95f5-9f61-b87cf447e4da@eisentraut.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/04e485273b56bec0e4637f97c587eca26cf823f0

Modified Files
--------------
src/backend/access/common/tupdesc.c | 109 +-----------------------------------
src/backend/commands/tablecmds.c    | 102 +++++++++++++++++++++++++++++++++
src/include/access/tupdesc.h        |   2 -
src/include/commands/tablecmds.h    |   2 +
4 files changed, 105 insertions(+), 110 deletions(-)


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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Refactor ListenSocket array.
Следующее
От: Michael Paquier
Дата:
Сообщение: pgsql: worker_spi: Add tests for BGWORKER_BYPASS_ALLOWCONN