"ownership" of sequences, pseudo random unique id

Поиск
Список
Период
Сортировка
От Ivan Sergio Borgonovo
Тема "ownership" of sequences, pseudo random unique id
Дата
Msg-id 20090820134057.2da3a692@dawn.webthatworks.it
обсуждение исходный текст
Ответы Re: "ownership" of sequences, pseudo random unique id
Список pgsql-general
I've

create table pr(
  code varchar(16) primary key,
  ...
);
create sequence pr_code_seq owned by pr.code; -- uh!

pr.code will *mostly* be obtained as

to_hex(feistel_encrypt(nextval('pr_code')))
and sometimes 'manually' inserting unique codes.

actually stuff like:
alter table pr drop column code;
or just
drop table pr

seems to work as expected (they drop the sequence too).

Should I be concerned of anything since it looks like a hack?

--
Ivan Sergio Borgonovo
http://www.webthatworks.it


В списке pgsql-general по дате отправления:

Предыдущее
От: Harald Fuchs
Дата:
Сообщение: Re: unique index for periods
Следующее
От: Scott Marlowe
Дата:
Сообщение: Re: ERROR: could not access file "$libdir/xxid": No such file or directory