diff options
author | Masahiko Sawada <msawada@postgresql.org> | 2025-08-01 18:02:41 +0000 |
---|---|---|
committer | Masahiko Sawada <msawada@postgresql.org> | 2025-08-01 18:02:41 +0000 |
commit | a2c6c4ed3145a411c2591ebd7ca14f30dd98b896 (patch) | |
tree | 240754f1424597799ffb1c901adab1bd8c4b99b0 | |
parent | 0ed92cf50cc428dad1732a5e604e5450d47acba3 (diff) |
Fix typo in AutoVacLauncherMain().
Author: Yugo Nagata <nagata@sraoss.co.jp>
Discussion: https://postgr.es/m/20250802002027.cd35c481f6c6bae7ca2a3e26@sraoss.co.jp
-rw-r--r-- | src/backend/postmaster/autovacuum.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/postmaster/autovacuum.c b/src/backend/postmaster/autovacuum.c index 9474095f271..8908603464c 100644 --- a/src/backend/postmaster/autovacuum.c +++ b/src/backend/postmaster/autovacuum.c @@ -562,10 +562,10 @@ AutoVacLauncherMain(const void *startup_data, size_t startup_data_len) /* * Create the initial database list. The invariant we want this list to - * keep is that it's ordered by decreasing next_time. As soon as an entry - * is updated to a higher time, it will be moved to the front (which is - * correct because the only operation is to add autovacuum_naptime to the - * entry, and time always increases). + * keep is that it's ordered by decreasing next_worker. As soon as an + * entry is updated to a higher time, it will be moved to the front (which + * is correct because the only operation is to add autovacuum_naptime to + * the entry, and time always increases). */ rebuild_database_list(InvalidOid); |