pgsql: Move the built-in conversions into the initial catalog data.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Move the built-in conversions into the initial catalog data.
Дата
Msg-id E1gfDel-0005Oy-P0@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Move the built-in conversions into the initial catalog data.

Instead of running a SQL script to create the standard conversion
functions and pg_conversion entries, put those entries into the
initial data in postgres.bki.

This shaves a few percent off the runtime of initdb, and also allows
accurate comments to be attached to the conversion functions; the
previous script labeled them with machine-generated comments that
were not quite right for multi-purpose conversion functions.
Also, we can get rid of the duplicative Makefile and MSVC perl
implementations of the generation code for that SQL script.

A functional change is that these pg_proc and pg_conversion entries
are now "pinned" by initdb.  Leaving them unpinned was perhaps a
good thing back while the conversions feature was under development,
but there seems no valid reason for it now.

Also, the conversion functions are now marked as immutable, where
before they were volatile by virtue of lacking any explicit
specification.  That seems like it was just an oversight.

To avoid using magic constants in pg_conversion.dat, extend
genbki.pl to allow encoding names to be converted, much as it
does for language, access method, etc names.

John Naylor

Discussion: https://postgr.es/m/CAJVSVGWtUqxpfAaxS88vEGvi+jKzWZb2EStu5io-UPc4p9rSJg@mail.gmail.com

Branch
------
master

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

Modified Files
--------------
doc/src/sgml/bki.sgml                            |   9 +-
src/backend/catalog/Makefile                     |   2 +-
src/backend/catalog/genbki.pl                    |  47 ++-
src/backend/utils/mb/conversion_procs/.gitignore |   1 -
src/backend/utils/mb/conversion_procs/Makefile   | 179 +---------
src/bin/initdb/initdb.c                          |  26 --
src/include/catalog/catversion.h                 |   2 +-
src/include/catalog/genbki.h                     |   5 +-
src/include/catalog/pg_conversion.dat            | 417 +++++++++++++++++++++++
src/include/catalog/pg_conversion.h              |  47 +--
src/include/catalog/pg_proc.dat                  | 410 +++++++++++++++++++++-
src/test/regress/expected/misc_sanity.out        |   1 -
src/tools/msvc/Install.pm                        |  39 ---
13 files changed, 912 insertions(+), 273 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Use symbolic references for pg_language OIDs in the bootstrapda
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: unaccent: Make generate_unaccent_rules.py Python 3 compatible