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
4d6a854f
Commit
4d6a854f
authored
Jun 04, 2018
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put new command-line options into alphabetical order
parent
12b9affb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
33 deletions
+33
-33
doc/src/sgml/ref/pg_dump.sgml
doc/src/sgml/ref/pg_dump.sgml
+15
-15
doc/src/sgml/ref/pg_dumpall.sgml
doc/src/sgml/ref/pg_dumpall.sgml
+15
-15
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+1
-1
src/bin/pg_dump/pg_dumpall.c
src/bin/pg_dump/pg_dumpall.c
+1
-1
src/bin/pg_dump/pg_restore.c
src/bin/pg_dump/pg_restore.c
+1
-1
No files found.
doc/src/sgml/ref/pg_dump.sgml
View file @
4d6a854f
...
...
@@ -804,6 +804,21 @@ PostgreSQL documentation
</listitem>
</varlistentry>
<varlistentry>
<term><option>--load-via-partition-root</option></term>
<listitem>
<para>
When dumping a <command>COPY</command> or <command>INSERT</command> statement for a partitioned table,
target the root of the partitioning hierarchy which contains it rather
than the partition itself. This may be useful when reloading data on
a server where rows do not always fall into the same partitions as
they did on the original server. This could happen, for example, if
the partitioning column is of type text and the two system have
different definitions of the collation used to partition the data.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--no-comments</option></term>
<listitem>
...
...
@@ -912,21 +927,6 @@ PostgreSQL documentation
</listitem>
</varlistentry>
<varlistentry>
<term><option>--load-via-partition-root</option></term>
<listitem>
<para>
When dumping a COPY or INSERT statement for a partitioned table,
target the root of the partitioning hierarchy which contains it rather
than the partition itself. This may be useful when reloading data on
a server where rows do not always fall into the same partitions as
they did on the original server. This could happen, for example, if
the partitioning column is of type text and the two system have
different definitions of the collation used to partition the data.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--section=<replaceable class="parameter">sectionname</replaceable></option></term>
<listitem>
...
...
doc/src/sgml/ref/pg_dumpall.sgml
View file @
4d6a854f
...
...
@@ -342,6 +342,21 @@ PostgreSQL documentation
</listitem>
</varlistentry>
<varlistentry>
<term><option>--load-via-partition-root</option></term>
<listitem>
<para>
When dumping a <command>COPY</command> or <command>INSERT</command> statement for a partitioned table,
target the root of the partitioning hierarchy which contains it rather
than the partition itself. This may be useful when reloading data on
a server where rows do not always fall into the same partitions as
they did on the original server. This could happen, for example, if
the partitioning column is of type text and the two system have
different definitions of the collation used to partition the data.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--no-comments</option></term>
<listitem>
...
...
@@ -449,21 +464,6 @@ PostgreSQL documentation
</listitem>
</varlistentry>
<varlistentry>
<term><option>--load-via-partition-root</option></term>
<listitem>
<para>
When dumping a COPY or INSERT statement for a partitioned table,
target the root of the partitioning hierarchy which contains it rather
than the partition itself. This may be useful when reloading data on
a server where rows do not always fall into the same partitions as
they did on the original server. This could happen, for example, if
the partitioning column is of type text and the two system have
different definitions of the collation used to partition the data.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><option>--use-set-session-authorization</option></term>
<listitem>
...
...
src/bin/pg_dump/pg_dump.c
View file @
4d6a854f
...
...
@@ -981,6 +981,7 @@ help(const char *progname)
printf
(
_
(
" --exclude-table-data=TABLE do NOT dump data for the named table(s)
\n
"
));
printf
(
_
(
" --if-exists use IF EXISTS when dropping objects
\n
"
));
printf
(
_
(
" --inserts dump data as INSERT commands, rather than COPY
\n
"
));
printf
(
_
(
" --load-via-partition-root load partitions via the root table
\n
"
));
printf
(
_
(
" --no-comments do not dump comments
\n
"
));
printf
(
_
(
" --no-publications do not dump publications
\n
"
));
printf
(
_
(
" --no-security-labels do not dump security label assignments
\n
"
));
...
...
@@ -989,7 +990,6 @@ help(const char *progname)
printf
(
_
(
" --no-tablespaces do not dump tablespace assignments
\n
"
));
printf
(
_
(
" --no-unlogged-table-data do not dump unlogged table data
\n
"
));
printf
(
_
(
" --quote-all-identifiers quote all identifiers, even if not key words
\n
"
));
printf
(
_
(
" --load-via-partition-root load partitions via the root table
\n
"
));
printf
(
_
(
" --section=SECTION dump named section (pre-data, data, or post-data)
\n
"
));
printf
(
_
(
" --serializable-deferrable wait until the dump can run without anomalies
\n
"
));
printf
(
_
(
" --snapshot=SNAPSHOT use given snapshot for the dump
\n
"
));
...
...
src/bin/pg_dump/pg_dumpall.c
View file @
4d6a854f
...
...
@@ -612,6 +612,7 @@ help(void)
printf
(
_
(
" --disable-triggers disable triggers during data-only restore
\n
"
));
printf
(
_
(
" --if-exists use IF EXISTS when dropping objects
\n
"
));
printf
(
_
(
" --inserts dump data as INSERT commands, rather than COPY
\n
"
));
printf
(
_
(
" --load-via-partition-root load partitions via the root table
\n
"
));
printf
(
_
(
" --no-comments do not dump comments
\n
"
));
printf
(
_
(
" --no-publications do not dump publications
\n
"
));
printf
(
_
(
" --no-role-passwords do not dump passwords for roles
\n
"
));
...
...
@@ -621,7 +622,6 @@ help(void)
printf
(
_
(
" --no-tablespaces do not dump tablespace assignments
\n
"
));
printf
(
_
(
" --no-unlogged-table-data do not dump unlogged table data
\n
"
));
printf
(
_
(
" --quote-all-identifiers quote all identifiers, even if not key words
\n
"
));
printf
(
_
(
" --load-via-partition-root load partitions via the root table
\n
"
));
printf
(
_
(
" --use-set-session-authorization
\n
"
" use SET SESSION AUTHORIZATION commands instead of
\n
"
" ALTER OWNER commands to set ownership
\n
"
));
...
...
src/bin/pg_dump/pg_restore.c
View file @
4d6a854f
...
...
@@ -483,9 +483,9 @@ usage(const char *progname)
printf
(
_
(
" --disable-triggers disable triggers during data-only restore
\n
"
));
printf
(
_
(
" --enable-row-security enable row security
\n
"
));
printf
(
_
(
" --if-exists use IF EXISTS when dropping objects
\n
"
));
printf
(
_
(
" --no-comments do not dump comments
\n
"
));
printf
(
_
(
" --no-data-for-failed-tables do not restore data of tables that could not be
\n
"
" created
\n
"
));
printf
(
_
(
" --no-comments do not dump comments
\n
"
));
printf
(
_
(
" --no-publications do not restore publications
\n
"
));
printf
(
_
(
" --no-security-labels do not restore security labels
\n
"
));
printf
(
_
(
" --no-subscriptions do not restore subscriptions
\n
"
));
...
...
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