@@ -684,7 +684,7 @@ PostgreSQL documentation
684684 ...</literal>). This will make restoration very slow; it is mainly
685685 useful for making dumps that can be loaded into
686686 non-<productname>PostgreSQL</productname> databases.
687- Any error during reloading will cause only rows that are part of the
687+ Any error during restoring will cause only rows that are part of the
688688 problematic <command>INSERT</command> to be lost, rather than the
689689 entire table contents.
690690 </para>
@@ -708,9 +708,9 @@ PostgreSQL documentation
708708 This option is relevant only when creating a data-only dump.
709709 It instructs <application>pg_dump</application> to include commands
710710 to temporarily disable triggers on the target tables while
711- the data is reloaded . Use this if you have referential
711+ the data is restored . Use this if you have referential
712712 integrity checks or other triggers on the tables that you
713- do not want to invoke during data reload .
713+ do not want to invoke during data restore .
714714 </para>
715715
716716 <para>
@@ -828,7 +828,7 @@ PostgreSQL documentation
828828 than <command>COPY</command>). This will make restoration very slow;
829829 it is mainly useful for making dumps that can be loaded into
830830 non-<productname>PostgreSQL</productname> databases.
831- Any error during reloading will cause only rows that are part of the
831+ Any error during restoring will cause only rows that are part of the
832832 problematic <command>INSERT</command> to be lost, rather than the
833833 entire table contents. Note that the restore might fail altogether if
834834 you have rearranged column order. The
@@ -847,7 +847,7 @@ PostgreSQL documentation
847847 target the root of the partitioning hierarchy that contains it, rather
848848 than the partition itself. This causes the appropriate partition to
849849 be re-determined for each row when the data is loaded. This may be
850- useful when reloading data on a server where rows do not always fall
850+ useful when restoring data on a server where rows do not always fall
851851 into the same partitions as they did on the original server. That
852852 could happen, for example, if the partitioning column is of type text
853853 and the two systems have different definitions of the collation used
@@ -859,7 +859,7 @@ PostgreSQL documentation
859859 with this option, because <application>pg_restore</application> will
860860 not know exactly which partition(s) a given archive data item will
861861 load data into. This could result in inefficiency due to lock
862- conflicts between parallel jobs, or perhaps even reload failures due
862+ conflicts between parallel jobs, or perhaps even restore failures due
863863 to foreign key constraints being set up before all the relevant data
864864 is loaded.
865865 </para>
@@ -1028,7 +1028,7 @@ PostgreSQL documentation
10281028 Dump data as <command>INSERT</command> commands (rather than
10291029 <command>COPY</command>). Controls the maximum number of rows per
10301030 <command>INSERT</command> command. The value specified must be a
1031- number greater than zero. Any error during reloading will cause only
1031+ number greater than zero. Any error during restoring will cause only
10321032 rows that are part of the problematic <command>INSERT</command> to be
10331033 lost, rather than the entire table contents.
10341034 </para>
0 commit comments