mirror of
https://github.com/postgres/postgres.git
synced 2025-10-21 02:52:47 +03:00
Update messages, comments and documentation for materialized views.
All instances of the verbiage lagging the code. Back-patch to 9.3, where materialized views were introduced.
This commit is contained in:
@@ -742,8 +742,8 @@ vac_update_datfrozenxid(void)
|
||||
Form_pg_class classForm = (Form_pg_class) GETSTRUCT(classTup);
|
||||
|
||||
/*
|
||||
* Only consider heap and TOAST tables (anything else should have
|
||||
* InvalidTransactionId in relfrozenxid anyway.)
|
||||
* Only consider relations able to hold unfrozen XIDs (anything else
|
||||
* should have InvalidTransactionId in relfrozenxid anyway.)
|
||||
*/
|
||||
if (classForm->relkind != RELKIND_RELATION &&
|
||||
classForm->relkind != RELKIND_MATVIEW &&
|
||||
@@ -1044,7 +1044,7 @@ vacuum_rel(Oid relid, VacuumStmt *vacstmt, bool do_toast, bool for_wraparound)
|
||||
}
|
||||
|
||||
/*
|
||||
* Check that it's a vacuumable table; we used to do this in
|
||||
* Check that it's a vacuumable relation; we used to do this in
|
||||
* get_rel_oids() but seems safer to check after we've locked the
|
||||
* relation.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user