Re: PostgreSQL compilation with custom table name length - Mailing list pgsql-general

From Gregory Wood
Subject Re: PostgreSQL compilation with custom table name length
Date
Msg-id 029501c291aa$7f9452d0$7889ffcc@comstock.com
Whole thread Raw
In response to PostgreSQL compilation with custom table name length  (Henry Pedask <henry@sekretar.ee>)
Responses Re: PostgreSQL compilation with custom table name length
List 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 by date:

Previous
From: "Gregory Wood"
Date:
Subject: Re: Rép. : [GENERAL] double quotes around table and column names
Next
From: "Nigel J. Andrews"
Date:
Subject: Re: Request assistance connecting with Pg::connectdb