From: | "Daniel Verite" <daniel(at)manitou-mail(dot)org> |
---|---|
To: | "Michael Paquier" <michael(dot)paquier(at)gmail(dot)com> |
Cc: | "Peter Eisentraut" <peter(dot)eisentraut(at)2ndquadrant(dot)com>,"Steve Singer" <steve(at)ssinger(dot)info>,"pgsql-hackers" <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: sequence data type |
Date: | 2017-01-13 15:51:39 |
Message-ID: | 74f9b7b8-fa1f-48ef-a7ef-599521222442@manitou-mail.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Michael Paquier wrote:
> Hm. Is symmetry an important properly for sequences? It seems to me
> that if we map with the data types we had better use the MIN values
> instead for consistency. So the concept of this patch is rather weird
> and would introduce an exception with the rest of the system just for
> sequences.
Besides there's a related compatibility break in that,
if a sequence is created in an existing release like this:
CREATE SEQUENCE s MINVALUE -9223372036854775808;
And then it's dumped/reloaded on a backend that has
the patch applied, it fails with:
MINVALUE (-9223372036854775808) is too large for sequence data type bigint
This value (-2^63) is legal in current releases, although it happens
to be off-by-1 compared to the default minvalue for a sequence going
downwards. Arguably it's the default that is weird.
I've started the thread at [1] to discuss whether it makes sense
in the first place that our CREATE SEQUENCE takes -(2^63)+1 as the
default minvalue rather than -2^63, independantly of this patch.
I think the current patch transforms this oddity into an actual
issue by making it impossible to reach the real minimum of
a sequence with regard to the type tied to it (-2^15 for smallint,
-2^31 for int, -2^63 for bigint), whereas in HEAD you can still
adjust minvalue to fix the off-by-1 against the bigint range, if you
happen to care about it, the only problem being that you first
need to figure this out by yourself.
[1]
/message-id/4865a75e-f490-4e9b-b8e7-3d78694c3178@manitou-mail.org
Best regards,
--
Daniel Vérité
PostgreSQL-powered mailer: http://www.manitou-mail.org
Twitter: @DanielVerite
From | Date | Subject | |
---|---|---|---|
Next Message | Dilip Kumar | 2017-01-13 15:58:43 | Re: New SQL counter statistics view (pg_stat_sql) |
Previous Message | Fabien COELHO | 2017-01-13 15:45:36 | Re: pgbench - allow backslash continuations in \set expressions |