Support multiple -t/--table arguments for more commands
Magnus Hagander <magnus@hagander.net>
Support multiple -t/--table arguments for more commands On top of the previous support in pg_dump, add support to specify multiple tables (by using the -t option multiple times) to pg_restore, clsuterdb, reindexdb and vacuumdb. Josh Kupershmidt, reviewed by Karl O. Pinc
Files
| Path | Change | +/− |
|---|---|---|
| doc/src/sgml/ref/clusterdb.sgml | modified | +13 −1 |
| doc/src/sgml/ref/pg_restore.sgml | modified | +2 −1 |
| doc/src/sgml/ref/reindexdb.sgml | modified | +25 −14 |
| doc/src/sgml/ref/vacuumdb.sgml | modified | +13 −7 |
| src/bin/pg_dump/common.c | modified | +0 −31 |
| src/bin/pg_dump/dumputils.c | modified | +33 −0 |
| src/bin/pg_dump/dumputils.h | modified | +17 −0 |
| src/bin/pg_dump/pg_backup_archiver.c | modified | +1 −1 |
| src/bin/pg_dump/pg_backup.h | modified | +2 −1 |
| src/bin/pg_dump/pg_dump.h | modified | +0 −13 |
| src/bin/pg_dump/pg_restore.c | modified | +2 −2 |
| src/bin/scripts/clusterdb.c | modified | +21 −8 |
| src/bin/scripts/Makefile | modified | +1 −1 |
| src/bin/scripts/reindexdb.c | modified | +36 −22 |
| src/bin/scripts/vacuumdb.c | modified | +25 −9 |