Re: Implicit sequence with start value? - Mailing list pgsql-general

From Clemens Eisserer
Subject Re: Implicit sequence with start value?
Date
Msg-id 194f62550907261020p569d3440s17f4edbfd88b0ba4@mail.gmail.com
Whole thread Raw
In response to Re: Implicit sequence with start value?  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Implicit sequence with start value?
Re: Implicit sequence with start value?
List pgsql-general
Hi Tom,

> regression=# alter sequence foo_bar_seq start with 1000;
> ALTER SEQUENCE
Completly forgot about that possibility, thanks a lot :)

What still puzzles me is how to get the sequence value applied.
MySQL's auto_increment simply ignores whatever value is supplied to
it, however postgres seems to insert the value instead of the next
sequence value, if one is supplied:

> CREATE TABLE custtype (key SERIAL PRIMARY KEY NOT NULL, name VARCHAR(127) NOT NULL,  short VARCHAR(4));
> ALTER SEQUENCE custtype_key_seq START WITH 10000;");
> INSERT INTO custtype VALUES(0, 'test', 'ta');
>
>  key |      name      | short
> -----+----------------+-------
 >  0   | test      | ta

Of course, under normal circumstances it would be no problem to insert
a nextval() however I am using an updateable JDBC ResultSet.
Any idea how I can force the sequence's nextval() value into the key
column using ResultSets?

Thank you in advance, Clemens

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Implicit sequence with start value?
Next
From: Raymond O'Donnell
Date:
Subject: Re: Implicit sequence with start value?