Re: Mysql -> Postgresql pitfalls

Поиск
Список
Период
Сортировка
От Chad N. Tindel
Тема Re: Mysql -> Postgresql pitfalls
Дата
Msg-id 20030804172617.GB36172@calma.pair.com
обсуждение исходный текст
Ответ на Re: Mysql -> Postgresql pitfalls  (Josh Berkus <josh@agliodbs.com>)
Список 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 по дате отправления:

Предыдущее
От: "Chad N. Tindel"
Дата:
Сообщение: Re: Mysql -> Postgresql pitfalls
Следующее
От: "Chad N. Tindel"
Дата:
Сообщение: Re: Mysql -> Postgresql pitfalls