pgsql: Avoid having two PKs in a partition

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема pgsql: Avoid having two PKs in a partition
Дата
Msg-id E1evWBZ-0004aN-GR@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Avoid having two PKs in a partition

If a table containing a primary key is attach as partition to a
partitioned table which has a primary key with a different definition,
we would happily create a second one in the new partition.  Oops.  It
turns out that this is because an error check in DefineIndex is executed
only if you tell it that it's being run by ALTER TABLE, and the original
code here wasn't.  Change it so that it does.

Added a couple of test cases for this, also.  A previously working test
started to fail in a different way than before patch because the new
check is called earlier; change the PK to plain UNIQUE so that the new
behavior isn't invoked, so that the test continues to verify what we
want it to verify.

Reported by: Noriyoshi Shinoda
Discussion: https://postgr.es/m/DF4PR8401MB102060EC2615EC9227CC73F7EEDF0@DF4PR8401MB1020.NAMPRD84.PROD.OUTLOOK.COM

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/1f8a3327a9db9a8a662fb39fdcde2337acffa68c

Modified Files
--------------
src/backend/commands/indexcmds.c       |  2 +-
src/backend/commands/tablecmds.c       |  2 +-
src/test/regress/expected/indexing.out | 26 +++++++++++++++++++++-----
src/test/regress/sql/indexing.sql      | 22 +++++++++++++++++++---
4 files changed, 42 insertions(+), 10 deletions(-)


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

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: doc: Reword restriction on partition keys in unique indexes
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Move strtoint() to common