Fix misstatement about the results of using -1 with BEGIN.
authorTom Lane
Tue, 31 Oct 2006 02:29:15 +0000 (02:29 +0000)
committerTom Lane
Tue, 31 Oct 2006 02:29:15 +0000 (02:29 +0000)
doc/src/sgml/ref/psql-ref.sgml

index be04f63284b540ff8f17cc03371efa7a0ed1c99e..6f16b1994b084d33f93ff615893fa4b4df2e2569 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -477,10 +477,12 @@ PostgreSQL documentation
        
 
        
-        If the script itself uses BEGIN, COMMIT
-        or any command that cannot be executed inside a transaction
-        block, specifying this option will cause the transaction to be
-        aborted.
+        If the script itself uses BEGIN, COMMIT,
+        or ROLLBACK, this option will not have the desired
+        effects.
+        Also, if the script contains any command that cannot be executed
+        inside a transaction block, specifying this option will cause that
+        command (and hence the whole transaction) to fail.