diff options
author | Alvaro Herrera | 2006-07-31 01:09:52 +0000 |
---|---|---|
committer | Alvaro Herrera | 2006-07-31 01:09:52 +0000 |
commit | d7295afe5e38efdae5c073018c88285be6067a85 (patch) | |
tree | 1a5d27801e4bb0513e1fd29aa4613007d753b70e /doc/src | |
parent | 2962428b3a0775b358dfa441766d3dedd41067ee (diff) |
Fix confusion between COPY FROM and COPY TO, per Gavin Sharry and Arul Shaji.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/set_transaction.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/set_transaction.sgml b/doc/src/sgml/ref/set_transaction.sgml index cbe41d7175..900118a4e2 100644 --- a/doc/src/sgml/ref/set_transaction.sgml +++ b/doc/src/sgml/ref/set_transaction.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/set_transaction.sgml,v 1.17 2003/09/11 21:42:20 momjian Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/ref/set_transaction.sgml,v 1.17.2.1 2006/07/31 01:09:52 alvherre Exp $ --> <refentry id="SQL-SET-TRANSACTION"> <refmeta> <refentrytitle id="SQL-SET-TRANSACTION-TITLE">SET TRANSACTION</refentrytitle> @@ -90,7 +90,7 @@ SET SESSION CHARACTERISTICS AS TRANSACTION read/write or read-only. Read/write is the default. When a transaction is read-only, the following SQL commands are disallowed: <literal>INSERT</literal>, <literal>UPDATE</literal>, - <literal>DELETE</literal>, and <literal>COPY TO</literal> if the + <literal>DELETE</literal>, and <literal>COPY FROM</literal> if the table they would write to is not a temporary table; all <literal>CREATE</literal>, <literal>ALTER</literal>, and <literal>DROP</literal> commands; <literal>COMMENT</literal>, |