Re: Table data exclusion patch for pg_dump - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Table data exclusion patch for pg_dump
Date
Msg-id 22744.1241207429@sss.pgh.pa.us
Whole thread Raw
In response to Re: Table data exclusion patch for pg_dump  (Andrew Dunstan <andrew@dunslane.net>)
List pgsql-hackers
Andrew Dunstan <andrew@dunslane.net> writes:
> Well, you can shoot yourself in the foot using pg_restore's --use-list 
> option too, but that doesn't mean it's not useful. And indeed it could 
> be used to achieve the OP's ends, except that he would have spent 
> useless time and space dumping the data for a table he doesn't want.

The critical difference, of course, being that when he discovers that it
doesn't work, he *has got* the data he needs to have to perform the
restore.  Excluding data at dump time is considerably more dangerous
because of the likelihood that you won't have any recourse when you
need it.

(In which connection, it is an astonishingly bad idea to repurpose -d
and -D for this behavior, so soon after we deprecated them.)
        regards, tom lane


pgsql-hackers by date:

Previous
From: Pavel Stehule
Date:
Subject: Re: Table data exclusion patch for pg_dump
Next
From: Andrew Dunstan
Date:
Subject: Re: Throw some low-level C scutwork at me