File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.37 2002/08/04 05:22:02 tgl Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/copy.sgml,v 1.38 2002/08/30 03:18:23 momjian Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -56,7 +56,7 @@ COPY <replaceable class="parameter">table</replaceable> [ ( <replaceable class="
56
56
</listitem>
57
57
</varlistentry>
58
58
59
- <varlistentry>
59
+ <varlistentry>
60
60
<term><replaceable class="parameter">column</replaceable></term>
61
61
<listitem>
62
62
<para>
@@ -699,6 +699,19 @@ ZW ZIMBABWE
699
699
<para>
700
700
There is no <command>COPY</command> statement in SQL92.
701
701
</para>
702
+ <para>
703
+ The following syntax was used by pre-7.3 servers and is still supported:
704
+ <synopsis>
705
+ COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ]
706
+ FROM { '<replaceable class="parameter">filename</replaceable>' | <filename>stdin</filename> }
707
+ [ [USING] DELIMITERS '<replaceable class="parameter">delimiter</replaceable>' ]
708
+ [ WITH NULL AS '<replaceable class="parameter">null string</replaceable>' ]
709
+ COPY [ BINARY ] <replaceable class="parameter">table</replaceable> [ WITH OIDS ]
710
+ TO { '<replaceable class="parameter">filename</replaceable>' | <filename>stdout</filename> }
711
+ [ [USING] DELIMITERS '<replaceable class="parameter">delimiter</replaceable>' ]
712
+ [ WITH NULL AS '<replaceable class="parameter">null string</replaceable>' ]
713
+ </synopsis>
714
+ </para>
702
715
</refsect2>
703
716
</refsect1>
704
717
</refentry>
Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.58 2002/08/29 00:17:01 tgl Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.59 2002/08/30 03:18:23 momjian Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -868,7 +868,8 @@ SELECT name FROM distributors ORDER BY code;
868
868
<para>
869
869
FOR UPDATE cannot be used in contexts where returned rows can't be clearly
870
870
identified with individual table rows; for example it can't be used with
871
- aggregation.
871
+ aggregation. FOR UPDATE may also appear before LIMIT for portability with
872
+ pre-7.3 servers.
872
873
</para>
873
874
</refsect2>
874
875
You can’t perform that action at this time.
0 commit comments