Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions src/backend/catalog/catalog.c
Original file line number Diff line number Diff line change
Expand Up @@ -570,16 +570,6 @@ IsSharedRelation(Oid relationId)
return true;
}

/* materialized view aux and its indexes */
if (relationId == GpMatviewAuxId ||
relationId == GpMatviewAuxMvoidIndexId ||
relationId == GpMatviewAuxMvnameIndexId ||
relationId == GpMatviewAuxDatastatusIndexId ||
relationId == GpMatviewTablesId ||
relationId == GpMatviewTablesMvRelIndexId ||
relationId == GpMatviewTablesRelIndexId)
return true;

/* warehouse table and its indexes */
if (relationId == GpWarehouseRelationId ||
relationId == GpWarehouseOidIndexId ||
Expand Down
2 changes: 1 addition & 1 deletion src/include/catalog/catversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
*/

/* 3yyymmddN */
#define CATALOG_VERSION_NO 302407192
#define CATALOG_VERSION_NO 302412051

#endif
2 changes: 1 addition & 1 deletion src/include/catalog/gp_matview_aux.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/*
* Defines for gp_matview_aux
*/
CATALOG(gp_matview_aux,7153,GpMatviewAuxId) BKI_SHARED_RELATION
CATALOG(gp_matview_aux,7153,GpMatviewAuxId)
{
Oid mvoid; /* materialized view oid */
NameData mvname; /* materialized view name */
Expand Down
2 changes: 1 addition & 1 deletion src/include/catalog/gp_matview_tables.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/*
* Defines for gp_matview_tables
*/
CATALOG(gp_matview_tables,7150,GpMatviewTablesId) BKI_SHARED_RELATION
CATALOG(gp_matview_tables,7150,GpMatviewTablesId)
{
Oid mvoid; /* materialized view oid */
Oid relid; /* base table oid */
Expand Down
Loading