Re: enhancement request for pg_restore - Mailing list pgsql-admin

From Tom Lane
Subject Re: enhancement request for pg_restore
Date
Msg-id 19660.1439487449@sss.pgh.pa.us
Whole thread Raw
In response to Re: enhancement request for pg_restore  (Andres Freund <andres@anarazel.de>)
List pgsql-admin
Andres Freund <andres@anarazel.de> writes:
> On 2015-08-13 15:10:21 +0000, Campbell, Lance wrote:
>> Please consider adding to pg_restore the command line option to exclude one or more tables similar to the pg_dump
option.

> You can kind of do this today using pg_restore's --list parameter to
> dump the list of objects in the archive, then remove the objects you
> don't need/want, and then use --use-list to restore only the remaining
> objects.

IIRC, the key reason why this is less than trivial is that pg_dump relies
on the server to identify which table names match the supplied pattern(s);
it basically does a "select from pg_class where relname ~ 'pattern'" kind
of query.  Short of porting the server's regex engine into pg_restore,
it would be hard to be 100% compatible with that definition.

Perhaps it's not necessary to implement wildcards in the pg_restore
case, or maybe it would be Close Enough if we relied on libc regexes,
but in any case it's not quite as simple as it might sound.

So basically this is unlikely to happen until somebody who wants the
feature bad enough spends the time to write and defend a patch.

            regards, tom lane


pgsql-admin by date:

Previous
From: Andres Freund
Date:
Subject: Re: enhancement request for pg_restore
Next
From: Adam FUCHS
Date:
Subject: postgres_fdw error