Last active
August 29, 2015 14:18
-
-
Save ringerc/1743cfad34694fc9b9a3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 0319a7ecbab5c1e85e300d93f674087786be144a Mon Sep 17 00:00:00 2001 | |
From: Craig Ringer <[email protected]> | |
Date: Wed, 1 Apr 2015 10:46:29 +0800 | |
Subject: [PATCH] pg_restore -t should select views, matviews, and foreign | |
tables | |
Currently pg_restore's '-t' option selects only tables, not other | |
relations. It should be able to match anything that behaves like | |
a relation in the relation namespace, anything that's interchangable | |
with a table, including: | |
* Normal relations | |
* Views | |
* Materialized views | |
* Foreign tables | |
Sequences are not matched. They're in the relation namespace, but | |
only as an implementation detail. A separate option to selectively | |
dump sequences should be added so that there's no BC break if | |
they later become non-class objects. | |
Indexes are also not matched; again, a different option should be | |
added for them. | |
TOAST tables aren't matched, they're implementation detail. | |
See: | |
http://www.postgresql.org/message-id/CAMsr+YGJ50TvTVK4Dbp66gAjeOC0KaP6KXFEHAOM+neQmHvoQA@mail.gmail.com | |
--- | |
src/bin/pg_dump/pg_backup_archiver.c | 5 ++++- | |
1 file changed, 4 insertions(+), 1 deletion(-) | |
diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c | |
index ca427de..75c8515 100644 | |
--- a/src/bin/pg_dump/pg_backup_archiver.c | |
+++ b/src/bin/pg_dump/pg_backup_archiver.c | |
@@ -2663,7 +2663,10 @@ _tocEntryRequired(TocEntry *te, teSection curSection, RestoreOptions *ropt) | |
if (ropt->selTypes) | |
{ | |
if (strcmp(te->desc, "TABLE") == 0 || | |
- strcmp(te->desc, "TABLE DATA") == 0) | |
+ strcmp(te->desc, "TABLE DATA") == 0 || | |
+ strcmp(te->desc, "VIEW") == 0 || | |
+ strcmp(te->desc, "FOREIGN TABLE") == 0 || | |
+ strcmp(te->desc, "MATERIALIZED VIEW") == 0) | |
{ | |
if (!ropt->selTable) | |
return 0; | |
-- | |
2.1.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment