From 5a2c8cf4b1fdac61fc4b3748ee292ee24c80af3a Mon Sep 17 00:00:00 2001 From: Neil Conway Date: Sun, 26 Sep 2004 23:48:07 +0000 Subject: [PATCH] Fix misstatement in docs: CREATE TABLE AS is now part of the standard. --- doc/src/sgml/ref/select_into.sgml | 7 +++---- doc/src/sgml/ref/set_transaction.sgml | 8 ++++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/doc/src/sgml/ref/select_into.sgml b/doc/src/sgml/ref/select_into.sgml index 5b3a98dbb6..1d5518d8a3 100644 --- a/doc/src/sgml/ref/select_into.sgml +++ b/doc/src/sgml/ref/select_into.sgml @@ -1,5 +1,5 @@ @@ -119,10 +119,9 @@ SELECT [ ALL | DISTINCT [ ON ( expressionECPG (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. diff --git a/doc/src/sgml/ref/set_transaction.sgml b/doc/src/sgml/ref/set_transaction.sgml index df66ca2bb7..6071df530e 100644 --- a/doc/src/sgml/ref/set_transaction.sgml +++ b/doc/src/sgml/ref/set_transaction.sgml @@ -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 SET TRANSACTION + by instead specifying the desired transaction_modes in - START TRANSACTION. + BEGIN or START TRANSACTION. -- 2.11.0