default values - Mailing list pgsql-hackers

From Thomas G. Lockhart
Subject default values
Date
Msg-id 35ED610D.CEC3ED9A@alumni.caltech.edu
Whole thread Raw
Responses Re: [HACKERS] default values  (Bruce Momjian <maillist@candle.pha.pa.us>)
List pgsql-hackers
In transcribing Jose's reference page docs, I've come across examples
where Jose has exposed deficiencies in Postgres' support of SQL92. I've
fixed several (easier than transcribing more words :) and I've run into
a bit of trouble on the latest one with the

  CREATE TABLE tablename DEFAULT VALUES

statement. I changed the parser to allow this syntax and just use a nil
pointer for the column list. Everything works OK except that the first
column's default value is not assigned correctly.

Any ideas on where to look? I'll probably commit the changes to gram.y
anyway, since it almost works. Examples below...

                        - Tom

postgres=> create table t (x text default 'default',
postgres->  i int default 1);
CREATE
postgres=> insert into t default values;
INSERT 143693 1
postgres=> select * from t;
x|i
-+-
 |1
(1 row)

postgres=> insert into t (i) values (2);
INSERT 143694 1
postgres=> select * from t;
x      |i
-------+-
       |1
default|2
(2 rows)

postgres=> create table t3 (x text default 'default',
postgres->  i int default 1, j int default 2);
CREATE
postgres=> insert into t3 default values;
INSERT 143709 1
postgres=> select * from t3;
x|i|j
-+-+-
 |1|2
(1 row)

pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] Core dump in regression tests.
Next
From: "Thomas G. Lockhart"
Date:
Subject: Re: [HACKERS] Core dump in regression tests.