Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5a2c8cf

Browse files
author
Neil Conway
committed
Fix misstatement in docs: CREATE TABLE AS is now part of the standard.
1 parent 7ac258c commit 5a2c8cf

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

doc/src/sgml/ref/select_into.sgml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/select_into.sgml,v 1.30 2004/08/24 00:06:51 neilc Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/select_into.sgml,v 1.31 2004/09/26 23:48:07 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -119,10 +119,9 @@ SELECT [ ALL | DISTINCT [ ON ( <replaceable class="PARAMETER">expression</replac
119119
in <application>ECPG</application> (see <xref linkend="ecpg">) and
120120
<application>PL/pgSQL</application> (see <xref linkend="plpgsql">).
121121
The <productname>PostgreSQL</productname> usage of <command>SELECT
122-
INTO</command> to represent table creation is historical. It's
122+
INTO</command> to represent table creation is historical. It is
123123
best to use <command>CREATE TABLE AS</command> for this purpose in
124-
new code. (<command>CREATE TABLE AS</command> isn't standard
125-
either, but it's less likely to cause confusion.)
124+
new code.
126125
</para>
127126
</refsect1>
128127
</refentry>

doc/src/sgml/ref/set_transaction.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/set_transaction.sgml,v 1.22 2004/09/20 00:04:19 neilc Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/set_transaction.sgml,v 1.23 2004/09/26 23:48:07 neilc Exp $ -->
22
<refentry id="SQL-SET-TRANSACTION">
33
<refmeta>
44
<refentrytitle id="SQL-SET-TRANSACTION-TITLE">SET TRANSACTION</refentrytitle>
@@ -118,10 +118,10 @@ where <replaceable class="parameter">transaction_mode</replaceable> is one of:
118118
</para>
119119

120120
<para>
121-
It is possible to dispense with <command>SET TRANSACTION</command> by
122-
instead specifying the desired <replaceable
121+
It is possible to dispense with <command>SET TRANSACTION</command>
122+
by instead specifying the desired <replaceable
123123
class="parameter">transaction_modes</replaceable> in
124-
<command>START TRANSACTION</command>.
124+
<command>BEGIN</command> or <command>START TRANSACTION</command>.
125125
</para>
126126

127127
<para>

0 commit comments

Comments
 (0)