Re: sequence increment jumps? - Mailing list pgsql-general

From Bruno Wolff III
Subject Re: sequence increment jumps?
Date
Msg-id 20070125175607.GC7220@wolff.to
Whole thread Raw
In response to sequence increment jumps?  ("John Smith" <jayzee.smith@gmail.com>)
List pgsql-general
On Thu, Jan 25, 2007 at 12:33:51 -0500,
  John Smith <jayzee.smith@gmail.com> wrote:
> guys,
> i inserted 1 record into my database (default
> nextval('sequencename'::regclass) where (start 1 increment 1)). then i
> tried to insert 1 other record twice but both those inserts failed
> because of a domain check ("ERROR: value too long for type character
> varying(X)". when i was finally able to insert that record the
> sequence jumped 2 places. seems like it counted the failed inserts?

That is how sequences work. All your are guaranteed globally is that they
are unique. You can't rely on getting a sequence without gaps. Within a single
session you can get a guaranty that the values increase monotonicly if you
disallow wrap around for the sequence.

pgsql-general by date:

Previous
From: Douglas McNaught
Date:
Subject: Re: sequence increment jumps?
Next
From: Thorsten Körner
Date:
Subject: Re: Problem with result ordering