diff options
Diffstat (limited to 'src/backend/commands/analyze.c')
-rw-r--r-- | src/backend/commands/analyze.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/backend/commands/analyze.c b/src/backend/commands/analyze.c index 8aa329a2a03..426c1e67109 100644 --- a/src/backend/commands/analyze.c +++ b/src/backend/commands/analyze.c @@ -617,11 +617,10 @@ do_analyze_rel(Relation onerel, VacuumParams *params, * * We assume that VACUUM hasn't set pg_class.reltuples already, even * during a VACUUM ANALYZE. Although VACUUM often updates pg_class, - * exceptions exist. A "VACUUM (ANALYZE, INDEX_CLEANUP OFF)" command - * will never update pg_class entries for index relations. It's also - * possible that an individual index's pg_class entry won't be updated - * during VACUUM if the index AM returns NULL from its amvacuumcleanup() - * routine. + * exceptions exist. A "VACUUM (ANALYZE, INDEX_CLEANUP OFF)" command will + * never update pg_class entries for index relations. It's also possible + * that an individual index's pg_class entry won't be updated during + * VACUUM if the index AM returns NULL from its amvacuumcleanup() routine. */ if (!inh) { @@ -659,9 +658,9 @@ do_analyze_rel(Relation onerel, VacuumParams *params, else if (onerel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE) { /* - * Partitioned tables don't have storage, so we don't set any fields in - * their pg_class entries except for reltuples, which is necessary for - * auto-analyze to work properly. + * Partitioned tables don't have storage, so we don't set any fields + * in their pg_class entries except for reltuples, which is necessary + * for auto-analyze to work properly. */ vac_update_relstats(onerel, -1, totalrows, 0, false, InvalidTransactionId, |