@@ -36,14 +36,14 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
36
36
FREEZE [ <replaceable class="parameter">boolean</replaceable> ]
37
37
DELIMITER '<replaceable class="parameter">delimiter_character</replaceable>'
38
38
NULL '<replaceable class="parameter">null_string</replaceable>'
39
+ DEFAULT '<replaceable class="parameter">default_string</replaceable>'
39
40
HEADER [ <replaceable class="parameter">boolean</replaceable> | MATCH ]
40
41
QUOTE '<replaceable class="parameter">quote_character</replaceable>'
41
42
ESCAPE '<replaceable class="parameter">escape_character</replaceable>'
42
43
FORCE_QUOTE { ( <replaceable class="parameter">column_name</replaceable> [, ...] ) | * }
43
44
FORCE_NOT_NULL ( <replaceable class="parameter">column_name</replaceable> [, ...] )
44
45
FORCE_NULL ( <replaceable class="parameter">column_name</replaceable> [, ...] )
45
46
ENCODING '<replaceable class="parameter">encoding_name</replaceable>'
46
- DEFAULT '<replaceable class="parameter">default_string</replaceable>'
47
47
</synopsis>
48
48
</refsynopsisdiv>
49
49
@@ -271,6 +271,19 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
271
271
</listitem>
272
272
</varlistentry>
273
273
274
+ <varlistentry>
275
+ <term><literal>DEFAULT</literal></term>
276
+ <listitem>
277
+ <para>
278
+ Specifies the string that represents a default value. Each time the string
279
+ is found in the input file, the default value of the corresponding column
280
+ will be used.
281
+ This option is allowed only in <command>COPY FROM</command>, and only when
282
+ not using <literal>binary</literal> format.
283
+ </para>
284
+ </listitem>
285
+ </varlistentry>
286
+
274
287
<varlistentry>
275
288
<term><literal>HEADER</literal></term>
276
289
<listitem>
@@ -369,19 +382,6 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
369
382
</listitem>
370
383
</varlistentry>
371
384
372
- <varlistentry>
373
- <term><literal>DEFAULT</literal></term>
374
- <listitem>
375
- <para>
376
- Specifies the string that represents a default value. Each time the string
377
- is found in the input file, the default value of the corresponding column
378
- will be used.
379
- This option is allowed only in <command>COPY FROM</command>, and only when
380
- not using <literal>binary</literal> format.
381
- </para>
382
- </listitem>
383
- </varlistentry>
384
-
385
385
<varlistentry>
386
386
<term><literal>WHERE</literal></term>
387
387
<listitem>
0 commit comments