Re: Partitioning on the date part of a timestamp & PK issues

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Partitioning on the date part of a timestamp & PK issues
Дата
Msg-id 202107160253.va6esfntkuxr@alvherre.pgsql
обсуждение исходный текст
Ответ на Re: Partitioning on the date part of a timestamp & PK issues  (Ron <ronljohnsonjr@gmail.com>)
Ответы Re: Partitioning on the date part of a timestamp & PK issues  (Ron <ronljohnsonjr@gmail.com>)
Список pgsql-admin
On 2021-Jul-15, Ron wrote:

> CREATE TABLE t (
>     guid uuid not null,
>     seq smallint not null,
>     tid smallint not null,
>     ts timestamp without time zone not null,
>     x real,
>     y real,
>     z real,
>     primary key (guid, tid, seq, ts)
> )   partition by range (ts);

This definition will let you have multiple rows for the same
(guid,tid,seq) combination, as long as they have different ts values.
That is at odds with the original formulation, in which there could be a
single row with any given combination of those three columns.

-- 
Álvaro Herrera         PostgreSQL Developer  —  https://www.EnterpriseDB.com/
"Having your biases confirmed independently is how scientific progress is
made, and hence made our great society what it is today" (Mary Gardiner)



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

Предыдущее
От: Wells Oliver
Дата:
Сообщение: Re: Partitioning on the date part of a timestamp & PK issues
Следующее
От: Ron
Дата:
Сообщение: Re: Partitioning on the date part of a timestamp & PK issues