Fix misstatement in docs: CREATE TABLE AS is now part of the standard.
authorNeil Conway
Sun, 26 Sep 2004 23:48:07 +0000 (23:48 +0000)
committerNeil Conway
Sun, 26 Sep 2004 23:48:07 +0000 (23:48 +0000)
doc/src/sgml/ref/select_into.sgml
doc/src/sgml/ref/set_transaction.sgml

index 5b3a98dbb6d1a15939bacbc6f9725123fa704d87..1d5518d8a37e6ddd1ce1101b5199e29bea0b5219 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -119,10 +119,9 @@ SELECT [ ALL | DISTINCT [ ON ( expression
    in ECPG (see ) and
    PL/pgSQL (see ).
    The PostgreSQL usage of SELECT
-   INTO to represent table creation is historical.  It's
+   INTO to represent table creation is historical.  It is
    best to use CREATE TABLE AS for this purpose in
-   new code.  (CREATE TABLE AS isn't standard
-   either, but it's less likely to cause confusion.)
+   new code.
   
  
 
index df66ca2bb733f2e429ba00aa7395d146d28a17b8..6071df530e146e288331d16d00e0d0a30ffaf5f4 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
  
   SET TRANSACTION
@@ -118,10 +118,10 @@ where transaction_mode is one of:
   
 
   
-   It is possible to dispense with SET TRANSACTION by
-   instead specifying the desired 
+   It is possible to dispense with SET TRANSACTION
+   by instead specifying the desired 
    class="parameter">transaction_modes in
-   START TRANSACTION.
+   BEGIN or START TRANSACTION.