@@ -221,32 +221,14 @@ row_security = on
221221
222222timezone = 'UTC'
223223
224- # These settings are initialized by initdb, but they can be changed.
225- lc_messages = 'en_US.UTF -8' # locale for system error message
226- # strings
227- lc_monetary = 'en_US.UTF -8' # locale for monetary formatting
228- lc_numeric = 'en_US.UTF -8' # locale for number formatting
229- lc_time = 'en_US.UTF -8' # locale for time formatting
230-
231- # default configuration for text search
232- default_text_search_config = 'pg_catalog.english '
233-
234- # These settings are initialized by initdb, but they can be changed.
235- lc_messages = 'en_US.UTF -8' # locale for system error message
236- # strings
237- lc_monetary = 'en_US.UTF -8' # locale for monetary formatting
238- lc_numeric = 'en_US.UTF -8' # locale for number formatting
239- lc_time = 'en_US.UTF -8' # locale for time formatting
224+ # Locale settings (lc_messages, lc_monetary, lc_numeric, lc_time) are
225+ # inherited from the container environment (LANG, LC_ALL).
240226
241227# default configuration for text search
242228default_text_search_config = 'pg_catalog.english '
243229
244230# - Shared Library Preloading -
245231
246- ## TODO: @rafael - We are starting from a Vanilla postgres. We still
247- ## ened to do work here to make sure we start postgres with libraries that
248- ## will be used by supabase infra.
249- # shared_preload_libraries = 'pg_stat_statements, pgaudit, plpgsql, plpgsql_check, pg_cron, pg_net, pgsodium, timescaledb, auto_explain, pg_tle, plan_filter, supabase_vault' # (change requires restart)
250232jit_provider = 'llvmjit' # JIT library to use
251233
252234# - Other Defaults -
@@ -272,7 +254,7 @@ jit_provider = 'llvmjit' # JIT library to use
272254#------------------------------------------------------------------------------
273255
274256#exit_on_error = off # terminate session on any error?
275- # restart_after_crash = on # reinitialize after backend crash?
257+ restart_after_crash = off # reinitialize after backend crash?
276258#data_sync_retry = off # retry or panic on failure to fsync
277259 # data?
278260 # (change requires restart)
@@ -306,7 +288,7 @@ wal_log_hints = 'on'
306288# These settings activate OrioleDB as the default table storage engine.
307289# Injected automatically by the /usr/local/bin/pgctld wrapper in variant-orioledb-17.
308290#------------------------------------------------------------------------------
309- shared_preload_libraries = 'orioledb'
291+ shared_preload_libraries = 'pg_stat_statements, pgaudit, plpgsql, plpgsql_check, pg_cron, pg_net, auto_explain, pg_tle, plan_filter, supabase_vault, orioledb'
310292default_table_access_method = 'orioledb'
311293orioledb.enable_rewind = true
312294orioledb.rewind_max_time = 1200
0 commit comments