Re: Mysql -> Postgresql pitfalls - Mailing list pgsql-docs

From Chad N. Tindel
Subject Re: Mysql -> Postgresql pitfalls
Date
Msg-id 20030804172617.GB36172@calma.pair.com
Whole thread Raw
In response to Re: Mysql -> Postgresql pitfalls  (Josh Berkus <josh@agliodbs.com>)
List pgsql-docs
> > > Yes.  The documentation very clearly states using sequences instead of
> > > auto-increment, but it doesn't make it clear that inserting the id's into
> > > data by hand doesn't cause the sequence to be auto-matically incremented.
> > >  It'd be nice of postgres had a way to trigger an update of the sequence
> > > value after every insert containing an id clumn.
>
> Um, how would this be a bennefit?   If you're inserting rows 101-259, how does
In mysql, when you insert into an auto_increment field and you specify an id,
all future requests to insert a row without specifying the ID will still work
properly.  In postgres, if you specify the id, your next insert without and
id will fail because the sequence won't have been updated.

> FWIW, in 7.5 we're likely to implement SQL3 IDENTITY columns ... basically
> just a SERIAL column where you don't have the option of inserting your own
> value, you have to take what it gives you.

Interesting... how do you import data from a dump with such columsn?

Chad

pgsql-docs by date:

Previous
From: "Chad N. Tindel"
Date:
Subject: Re: Mysql -> Postgresql pitfalls
Next
From: "Chad N. Tindel"
Date:
Subject: Re: Mysql -> Postgresql pitfalls