diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-10-20 01:43:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-10-20 01:43:32 +0000 |
commit | f1c0071d5a69ac2fab431e9794950ef179c9b0b8 (patch) | |
tree | b32ea445258dac28ca5076661afeb26e60d4c0e0 /doc/src | |
parent | ab901c60c884ea3f1a3202ab3b715f54a34bb827 (diff) | |
download | postgresql-f1c0071d5a69ac2fab431e9794950ef179c9b0b8.tar.gz postgresql-f1c0071d5a69ac2fab431e9794950ef179c9b0b8.zip |
Add warning that autocommit=off is not well-supported yet.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/runtime.sgml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index fc878e678c5..22fcddf57f1 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.145 2002/10/13 16:55:05 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.146 2002/10/20 01:43:32 tgl Exp $ --> <Chapter Id="runtime"> @@ -1245,6 +1245,7 @@ env PGOPTIONS='-c geqo=off' psql maximum compatibility with the SQL specification, set it to false. </para> + <note> <para> Even with <varname>autocommit</> set to false, <command>SET</>, @@ -1261,6 +1262,16 @@ env PGOPTIONS='-c geqo=off' psql </para> </note> + <note> + <para> + As of <productname>PostgreSQL</productname> 7.3, setting + <varname>autocommit</> to false is not well-supported. + This is a new feature and is not yet handled by all client + libraries and applications. Before making it the default + setting in your installation, test carefully. + </para> + </note> + </listitem> </varlistentry> |