Re: [HACKERS] serial and namespace

2002-04-01 Thread Tom Lane
Hiroshi Inoue <[EMAIL PROTECTED]> writes: > # create table inoue.t1 (id serial primary key, dt text); > NOTICE: CREATE TABLE will create implicit sequence 't1_id_seq' > for SERIAL column 't1.id' > NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index > 't1_pkey' for table 't1'

[HACKERS] serial and namespace

2002-04-01 Thread Hiroshi Inoue
Hi, I created a schema *inoue* and tried the following. # create table inoue.t1 (id serial primary key, dt text); NOTICE: CREATE TABLE will create implicit sequence 't1_id_seq' for SERIAL column 't1.id' NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index 't1_pkey' for table