From 517b8dc244abf3e56f0089849e464af76f70b94e Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Mon, 24 Feb 2025 21:07:43 +0200 Subject: [PATCH] Move neon_pgstat_file_size_limit to the extension --- src/backend/utils/misc/guc_tables.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c index 77bbccacf5d..743be6fcc3e 100644 --- a/src/backend/utils/misc/guc_tables.c +++ b/src/backend/utils/misc/guc_tables.c @@ -3650,17 +3650,6 @@ struct config_int ConfigureNamesInt[] = NULL, NULL, NULL }, - { - {"neon_pgstat_file_size_limit", PGC_SIGHUP, STATS_CUMULATIVE, - gettext_noop("Maximal size of pg_stat file saved in Neon storage."), - NULL, - GUC_UNIT_KB - }, - &neon_pgstat_file_size_limit, - 0, 0, 1000000, /* disabled by default */ - NULL, NULL, NULL - }, - { {"gin_pending_list_limit", PGC_USERSET, CLIENT_CONN_STATEMENT, gettext_noop("Sets the maximum size of the pending list for GIN index."),