Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
5a2c8cf4
Commit
5a2c8cf4
authored
20 years ago
by
Neil Conway
Browse files
Options
Downloads
Patches
Plain Diff
Fix misstatement in docs: CREATE TABLE AS is now part of the standard.
parent
7ac258c2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/src/sgml/ref/select_into.sgml
+3
-4
3 additions, 4 deletions
doc/src/sgml/ref/select_into.sgml
doc/src/sgml/ref/set_transaction.sgml
+4
-4
4 additions, 4 deletions
doc/src/sgml/ref/set_transaction.sgml
with
7 additions
and
8 deletions
doc/src/sgml/ref/select_into.sgml
+
3
−
4
View file @
5a2c8cf4
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/select_into.sgml,v 1.3
0
2004/0
8
/2
4 00:06:51
neilc Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/select_into.sgml,v 1.3
1
2004/0
9
/2
6 23:48:07
neilc Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -119,10 +119,9 @@ SELECT [ ALL | DISTINCT [ ON ( <replaceable class="PARAMETER">expression</replac
...
@@ -119,10 +119,9 @@ SELECT [ ALL | DISTINCT [ ON ( <replaceable class="PARAMETER">expression</replac
in <application>ECPG</application> (see <xref linkend="ecpg">) and
in <application>ECPG</application> (see <xref linkend="ecpg">) and
<application>PL/pgSQL</application> (see <xref linkend="plpgsql">).
<application>PL/pgSQL</application> (see <xref linkend="plpgsql">).
The <productname>PostgreSQL</productname> usage of <command>SELECT
The <productname>PostgreSQL</productname> usage of <command>SELECT
INTO</command> to represent table creation is historical. It
'
s
INTO</command> to represent table creation is historical. It
i
s
best to use <command>CREATE TABLE AS</command> for this purpose in
best to use <command>CREATE TABLE AS</command> for this purpose in
new code. (<command>CREATE TABLE AS</command> isn't standard
new code.
either, but it's less likely to cause confusion.)
</para>
</para>
</refsect1>
</refsect1>
</refentry>
</refentry>
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/ref/set_transaction.sgml
+
4
−
4
View file @
5a2c8cf4
<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/set_transaction.sgml,v 1.2
2
2004/09/2
0 00:04:19
neilc Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/set_transaction.sgml,v 1.2
3
2004/09/2
6 23:48:07
neilc Exp $ -->
<refentry id="SQL-SET-TRANSACTION">
<refentry id="SQL-SET-TRANSACTION">
<refmeta>
<refmeta>
<refentrytitle id="SQL-SET-TRANSACTION-TITLE">SET TRANSACTION</refentrytitle>
<refentrytitle id="SQL-SET-TRANSACTION-TITLE">SET TRANSACTION</refentrytitle>
...
@@ -118,10 +118,10 @@ where <replaceable class="parameter">transaction_mode</replaceable> is one of:
...
@@ -118,10 +118,10 @@ where <replaceable class="parameter">transaction_mode</replaceable> is one of:
</para>
</para>
<para>
<para>
It is possible to dispense with <command>SET TRANSACTION</command>
by
It is possible to dispense with <command>SET TRANSACTION</command>
instead specifying the desired <replaceable
by
instead specifying the desired <replaceable
class="parameter">transaction_modes</replaceable> in
class="parameter">transaction_modes</replaceable> in
<command>START TRANSACTION</command>.
<command>BEGIN</command> or
<command>START TRANSACTION</command>.
</para>
</para>
<para>
<para>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment