pgsql: Replace pg_class.relhasexclusion with pg_index.indisexclusion.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Replace pg_class.relhasexclusion with pg_index.indisexclusion.
Дата
Msg-id E1PhrkV-0007Qm-Ig@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Replace pg_class.relhasexclusion with pg_index.indisexclusion.

There isn't any need to track this state on a table-wide basis, and trying
to do so introduces undesirable semantic fuzziness.  Move the flag to
pg_index, where it clearly describes just a single index and can be
immutable after index creation.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=bd1ad1b019cda851a3e925133c056930368e6424

Modified Files
--------------
doc/src/sgml/catalogs.sgml         |   26 +++++++++++---------------
src/backend/catalog/heap.c         |    1 -
src/backend/catalog/index.c        |   31 ++++++++++---------------------
src/backend/commands/vacuum.c      |   17 ++++-------------
src/backend/parser/parse_utilcmd.c |    4 ++--
src/include/catalog/catversion.h   |    2 +-
src/include/catalog/pg_class.h     |   24 +++++++++++-------------
src/include/catalog/pg_index.h     |   24 +++++++++++++-----------
8 files changed, 52 insertions(+), 77 deletions(-)


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

Предыдущее
От: noreply@github.com
Дата:
Сообщение: [PGBuildFarm/server-code] ffe3a5: remove options not used in failures case
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Fix thinko in ALTER FOREIGN TABLE documentation.