diff options
author | David Rowley <drowley@postgresql.org> | 2025-08-04 17:43:22 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2025-08-04 17:43:22 +1200 |
commit | bca9a1900c87df86dd10d227910050cf85000c53 (patch) | |
tree | 21ef301814b42a17da04c9e4dfb1b27f46c0eb99 | |
parent | fd5a1a0c3e566f7fc860838084466a1c25944281 (diff) |
Fix incorrect comment regarding mod_since_analyze
Author: Yugo Nagata <nagata@sraoss.co.jp>
Discussion: https://postgr.es/m/20250804140120.280c2d6a9d2ea687cd167743@sraoss.co.jp
-rw-r--r-- | src/backend/commands/analyze.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/analyze.c b/src/backend/commands/analyze.c index 7111d5d5334..40d66537ad7 100644 --- a/src/backend/commands/analyze.c +++ b/src/backend/commands/analyze.c @@ -690,8 +690,8 @@ do_analyze_rel(Relation onerel, const VacuumParams params, * only do it for inherited stats. (We're never called for not-inherited * stats on partitioned tables anyway.) * - * Reset the changes_since_analyze counter only if we analyzed all - * columns; otherwise, there is still work for auto-analyze to do. + * Reset the mod_since_analyze counter only if we analyzed all columns; + * otherwise, there is still work for auto-analyze to do. */ if (!inh) pgstat_report_analyze(onerel, totalrows, totaldeadrows, |