mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-17 11:03:36 +08:00
PG16: Fix ts_bgw_log_level bootval
When defining a GUC Postgres do a cross-check between the initial value of the C declaration associated to a GUC and its actual boot value in assert-enabled builds. Previous PR #6206 didn't fixed it entirely and this happen just on PG16. postgres/postgres@a73952b7
This commit is contained in:
parent
4e06cd3b30
commit
5f5f519030
@ -727,7 +727,7 @@ _guc_init(void)
|
||||
"Log level for the scheduler and workers of the background worker "
|
||||
"subsystem. Requires configuration reload to change.",
|
||||
/* valueAddr= */ &ts_guc_bgw_log_level,
|
||||
/* bootValue= */ log_min_messages,
|
||||
/* bootValue= */ WARNING,
|
||||
/* options= */ loglevel_options,
|
||||
/* context= */ PGC_SIGHUP,
|
||||
0,
|
||||
|
Loading…
x
Reference in New Issue
Block a user