Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
cafebdd4
Commit
cafebdd4
authored
Aug 30, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add comment on old sytax for SELECT FOR UPDATE/LIMIT and COPY.
parent
a4dbbb52
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
4 deletions
+18
-4
doc/src/sgml/ref/copy.sgml
doc/src/sgml/ref/copy.sgml
+15
-2
doc/src/sgml/ref/select.sgml
doc/src/sgml/ref/select.sgml
+3
-2
No files found.
doc/src/sgml/ref/copy.sgml
View file @
cafebdd4
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.3
7 2002/08/04 05:22:02 tgl
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.3
8 2002/08/30 03:18:23 momjian
Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -56,7 +56,7 @@ COPY <replaceable class="parameter">table</replaceable> [ ( <replaceable class="
...
@@ -56,7 +56,7 @@ COPY <replaceable class="parameter">table</replaceable> [ ( <replaceable class="
</listitem>
</listitem>
</varlistentry>
</varlistentry>
<varlistentry>
<varlistentry>
<term><replaceable class="parameter">column</replaceable></term>
<term><replaceable class="parameter">column</replaceable></term>
<listitem>
<listitem>
<para>
<para>
...
@@ -699,6 +699,19 @@ ZW ZIMBABWE
...
@@ -699,6 +699,19 @@ ZW ZIMBABWE
<para>
<para>
There is no <command>COPY</command> statement in SQL92.
There is no <command>COPY</command> statement in SQL92.
</para>
</para>
<para>
The following syntax was used by pre-7.3 servers and is still supported:
<synopsis>
COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ]
FROM { '<replaceable class="parameter">filename</replaceable>' | <filename>stdin</filename> }
[ [USING] DELIMITERS '<replaceable class="parameter">delimiter</replaceable>' ]
[ WITH NULL AS '<replaceable class="parameter">null string</replaceable>' ]
COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ]
TO { '<replaceable class="parameter">filename</replaceable>' | <filename>stdout</filename> }
[ [USING] DELIMITERS '<replaceable class="parameter">delimiter</replaceable>' ]
[ WITH NULL AS '<replaceable class="parameter">null string</replaceable>' ]
</synopsis>
</para>
</refsect2>
</refsect2>
</refsect1>
</refsect1>
</refentry>
</refentry>
...
...
doc/src/sgml/ref/select.sgml
View file @
cafebdd4
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.5
8 2002/08/29 00:17:01 tgl
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.5
9 2002/08/30 03:18:23 momjian
Exp $
PostgreSQL documentation
PostgreSQL documentation
-->
-->
...
@@ -868,7 +868,8 @@ SELECT name FROM distributors ORDER BY code;
...
@@ -868,7 +868,8 @@ SELECT name FROM distributors ORDER BY code;
<para>
<para>
FOR UPDATE cannot be used in contexts where returned rows can't be clearly
FOR UPDATE cannot be used in contexts where returned rows can't be clearly
identified with individual table rows; for example it can't be used with
identified with individual table rows; for example it can't be used with
aggregation.
aggregation. FOR UPDATE may also appear before LIMIT for portability with
pre-7.3 servers.
</para>
</para>
</refsect2>
</refsect2>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment