Re: unique indexes on partitioned tables

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема Re: unique indexes on partitioned tables
Дата
Msg-id f974273b-50e6-b916-fb59-cbb1d057793f@2ndquadrant.com
обсуждение исходный текст
Ответ на Re: unique indexes on partitioned tables  (Alvaro Herrera <alvherre@alvh.no-ip.org>)
Ответы Re: unique indexes on partitioned tables  (Peter Eisentraut <peter.eisentraut@2ndquadrant.com>)
Re: unique indexes on partitioned tables  (Alvaro Herrera <alvherre@alvh.no-ip.org>)
Список pgsql-hackers
On 1/22/18 17:55, Alvaro Herrera wrote:
> Alvaro Herrera wrote:
>> Version 4 of this patch, rebased on today's master.

+           if (key->partattrs[i] == 0)
+               ereport(ERROR,
+                       (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
+                        errmsg("unsupported %s constraint with
partition key definition",
+                               constraint_type),
+                        errmsg("%s constraints cannot be used when
partition keys include expressions.",
+                               constraint_type)));

Double errmsg().  (Maybe an Assert somewhere should help catch this?)

+alter table idxpart add primary key (a);       -- not an incomplete one tho

"though"?

I would like to see some tests that the unique constraints are actually
enforced.  That is, insert some duplicate values and see it fail.  Throw
some null values in, to check PK behavior as well.  It should be
trivial, but seems kind of useful.

Other than that, this looks pretty good to me.  A logical extension of
the previous partitioned index patch.

-- 
Peter Eisentraut              http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services


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

Предыдущее
От: Stephen Frost
Дата:
Сообщение: Re: [HACKERS] Patch: Add --no-comments to skip COMMENTs with pg_dump
Следующее
От: Corey Huinker
Дата:
Сообщение: Re: \describe*