diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-04-24 02:40:45 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-04-24 02:40:45 +0000 |
commit | 19b31e0713a0cae74f4aaf74650d1a3b45fce396 (patch) | |
tree | 25f81e8ace8520738d98814311a4cc50482172ac | |
parent | adf7cc04cb333bc974aff089313d136ad4f924a5 (diff) | |
download | postgresql-19b31e0713a0cae74f4aaf74650d1a3b45fce396.tar.gz postgresql-19b31e0713a0cae74f4aaf74650d1a3b45fce396.zip |
Oops, wrong commit on previous. It was:
The attached patch allows views to have default values. You can't
specify a default value within a CREATE VIEW statement, it must be
done using ALTER TABLE ... ALTER COLUMN ... SET DEFAULT after the
view has already been created. Most of the hard work was done by
Tom Lane, I just patched pg_dump and updated the documentation.
Neil Conway <neilconway@rogers.com>
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index b131a11638a..b0174bcd1e9 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.43 2002/04/23 02:07:15 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.44 2002/04/24 02:40:45 momjian Exp $ PostgreSQL documentation --> @@ -53,6 +53,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable> </title> <para> <variablelist> + <varlistentry> <term><replaceable class="PARAMETER"> table </replaceable></term> <listitem> |