declarative partition by list, "other values" syntax - Mailing list pgsql-general

From legrand legrand
Subject declarative partition by list, "other values" syntax
Date
Msg-id 1511211168922-0.post@n3.nabble.com
Whole thread Raw
Responses Re: declarative partition by list, "other values" syntax
List pgsql-general
Hello,

I was trying to create a partitionned table by list,
that has on special partition for "other values"

for exemple
create table wiki_data_part(  category varchar(20),  tim_id bigint,  pag_id bigint,  requests int,  size bigint
) 
PARTITION BY LIST (category );

CREATE TABLE wiki_data_part_a PARTITION OF wiki_data_part
FOR VALUES IN ('ang.q','ace.mw', ...);

CREATE TABLE wiki_data_part_b PARTITION OF wiki_data_part
FOR VALUES IN ('bs.s','bh.mw','bar','br.d', ...);

How could I create a partition containing the other values (like MINVALUE,
MAXVALUE for range partition) ?

CREATE TABLE wiki_data_part_others PARTITION OF wiki_data_part
FOR VALUES IN (others);

could not find it in doc
https://www.postgresql.org/docs/10/static/sql-createtable.html

Thanks in advance
Regards
PAscal




--
Sent from: http://www.postgresql-archive.org/PostgreSQL-general-f1843780.html


pgsql-general by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: To all who wish to unsubscribe
Next
From: Magnus Hagander
Date:
Subject: Re: To all who wish to unsubscribe