I am reading the doc of PG Admin 4 about backup dialog box which uses the pg_dump
utility.
In the dump options tab, there is a sub-menu Section with three switches.
One of the switch is named "pre-data" and the doc explains:
Move the switch next to Pre-data to the Yes position to include all data definition items not included in the data or post-data item lists.
I don't understand what is included in:
all data definition items not included in the data or post-data item lists.
What are those "data definition items" included in "pre data"?
Search engines lead me to other Postgresql doc about the pg_dump
with exactly the same explanation.
pg_dump
: postgresql.org/docs/current/static/app-pgdump.html see the part about the--section
argument – Latoria--section
argument of the "classic" doc has the same content as in the PGadmin 4 doc. – Margarita