summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKevin Grittner <kgrittn@postgresql.org>2013-08-18 16:24:59 -0500
committerKevin Grittner <kgrittn@postgresql.org>2013-08-18 16:24:59 -0500
commit5a91ea7a000295a7898f96cad6f0c3c288d41039 (patch)
tree27a12da999437e75082965213dd746fa5a3fef72 /src
parent7c8de5d3e587a31279771f32291a5d4b94bd2514 (diff)
Remove relcache entry invalidation in REFRESH MATERIALIZED VIEW.
This was added as part of the attempt to support unlogged matviews along with a populated status. It got missed when unlogged support was removed pre-commit. Noticed by Noah Misch. Back-patched to 9.3 branch.
Diffstat (limited to 'src')
-rw-r--r--src/backend/commands/matview.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/commands/matview.c b/src/backend/commands/matview.c
index ce7e427c911..d3195fc62e5 100644
--- a/src/backend/commands/matview.c
+++ b/src/backend/commands/matview.c
@@ -225,8 +225,6 @@ ExecRefreshMatView(RefreshMatViewStmt *stmt, const char *queryString,
finish_heap_swap(matviewOid, OIDNewHeap, false, false, true, true,
RecentXmin, ReadNextMultiXactId());
- RelationCacheInvalidateEntry(matviewOid);
-
/* Roll back any GUC changes */
AtEOXact_GUC(false, save_nestlevel);