Re: PostgreSQL compilation with custom table name length

Поиск
Список
Период
Сортировка
От Gregory Wood
Тема Re: PostgreSQL compilation with custom table name length
Дата
Msg-id 029501c291aa$7f9452d0$7889ffcc@comstock.com
обсуждение исходный текст
Ответ на PostgreSQL compilation with custom table name length  (Henry Pedask <henry@sekretar.ee>)
Ответы Re: PostgreSQL compilation with custom table name length  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
> Or you could move to 7.3rc1 --- NAMEDATALEN is 64 by default in 7.3.

Does this mean that serial sequence names will change?

For example, instead of:

test=# create table reallylongtablename (reallylongserialname serial);
NOTICE:  CREATE TABLE will create implicit sequence
'reallylongtab_reallylongser_seq' for SERIAL column
'reallylongtablename.reallylongserialname'

It will be:

test=# create table reallylongtablename (reallylongserialname serial);
NOTICE:  CREATE TABLE will create implicit sequence
'reallylongtablename_reallylongserialname_seq' for SERIAL column
'reallylongtablename.reallylongserialname'

Greg


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

Предыдущее
От: "Gregory Wood"
Дата:
Сообщение: Re: Rép. : [GENERAL] double quotes around table and column names
Следующее
От: "Nigel J. Andrews"
Дата:
Сообщение: Re: Request assistance connecting with Pg::connectdb