| /*------------------------------------------------------------------------- | |
| * | |
| * matview.h | |
| * prototypes for matview.c. | |
| * | |
| * | |
| * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group | |
| * Portions Copyright (c) 1994, Regents of the University of California | |
| * | |
| * src/include/commands/matview.h | |
| * | |
| *------------------------------------------------------------------------- | |
| */ | |
| extern void SetMatViewPopulatedState(Relation relation, bool newstate); | |
| extern ObjectAddress ExecRefreshMatView(RefreshMatViewStmt *stmt, const char *queryString, | |
| ParamListInfo params, QueryCompletion *qc); | |
| extern ObjectAddress RefreshMatViewByOid(Oid matviewOid, bool skipData, bool concurrent, | |
| const char *queryString, ParamListInfo params, | |
| QueryCompletion *qc); | |
| extern DestReceiver *CreateTransientRelDestReceiver(Oid transientoid); | |
| extern bool MatViewIncrementalMaintenanceIsEnabled(void); | |