From: Teodor Sigaev Date: Mon, 22 Jun 2026 16:16:02 +0000 (+0300) Subject: use new name of log_vacuum_min_duration for v19 on online_analyze X-Git-Url: http://www.sigaev.ru/git/gitweb.cgi?a=commitdiff_plain;ds=sidebyside;p=online_analyze.git use new name of log_vacuum_min_duration for v19 on online_analyze Anton Voloshin --- diff --git a/online_analyze.c b/online_analyze.c index 363a5ae..89c9e24 100644 --- a/online_analyze.c +++ b/online_analyze.c @@ -619,8 +619,12 @@ makeAnalyze(Oid relOid, CmdKind operation, int64 naffected) #else vacstmt.multixact_freeze_min_age = -1; vacstmt.multixact_freeze_table_age = -1; +#if PG_VERSION_NUM >= 190000 + vacstmt.log_vacuum_min_duration = -1; +#else vacstmt.log_min_duration = -1; #endif +#endif if (online_analyze_verbose)