diff options
author | Neil Conway <neilc@samurai.com> | 2005-03-13 09:36:31 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2005-03-13 09:36:31 +0000 |
commit | ff02d0a05280e96e0b91b97ec50e98611f9c7598 (patch) | |
tree | 430a642c7e87e1585db184183a4f0ce523412ef6 /doc/src/sgml/pltcl.sgml | |
parent | 0edc2f14e0b5ece995a5ebb7f36ea593d730c4aa (diff) | |
download | postgresql-ff02d0a05280e96e0b91b97ec50e98611f9c7598.tar.gz postgresql-ff02d0a05280e96e0b91b97ec50e98611f9c7598.zip |
Make default_with_oids default to false -- user-created tables will now
no longer include OIDs, unless WITH OIDS is specified or the
default_with_oids configuration parameter is enabled. Update the docs
accordingly.
Diffstat (limited to 'doc/src/sgml/pltcl.sgml')
-rw-r--r-- | doc/src/sgml/pltcl.sgml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/pltcl.sgml b/doc/src/sgml/pltcl.sgml index 1d22035fa9b..7cb60a3c581 100644 --- a/doc/src/sgml/pltcl.sgml +++ b/doc/src/sgml/pltcl.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/pltcl.sgml,v 2.34 2005/01/22 22:56:36 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/pltcl.sgml,v 2.35 2005/03/13 09:36:30 neilc Exp $ --> <chapter id="pltcl"> @@ -400,8 +400,9 @@ $$ LANGUAGE pltcl; <listitem> <para> Returns the OID of the row inserted by the last - <function>spi_exec</> or <function>spi_execp</>, - if the command was a single-row <command>INSERT</>. (If not, you get zero.) + <function>spi_exec</> or <function>spi_execp</>, if the + command was a single-row <command>INSERT</> and the modified + table contained OIDs. (If not, you get zero.) </para> </listitem> </varlistentry> |