timescaledb/tsl/test/postgresql.conf.in
Alexander Kuzmenkov d8e892a658 Save postgres logs on Windows in CI
We don't save them currently.
2022-10-27 19:38:26 +04:00

36 lines
1.3 KiB
Plaintext

# This section has to be equivalent to test/postgresql.conf
shared_preload_libraries=timescaledb
max_worker_processes=24
autovacuum=false
random_page_cost=1.0
timezone='US/Pacific'
datestyle='Postgres, MDY'
@TELEMETRY_DEFAULT_SETTING@
timescaledb.last_tuned='1971-02-03 04:05:06.789012 -0300'
timescaledb.last_tuned_version='0.0.1'
timescaledb_telemetry.cloud='ci'
log_line_prefix='%m %u [%p] %d '
# PG12 changed the default rounding behavior of floating point
# numbers. Setting extra_float_digits=0 retains the old behavior which
# is needed to make our tests work for multiple PostgreSQL versions.
extra_float_digits=0
timescaledb.passfile='@TEST_PASSFILE@'
hba_file='@TEST_PG_HBA_FILE@'
# This section adds additional options required by TSL.
timescaledb.license='timescale'
max_connections=200
max_prepared_transactions=100 #set same as max_connections
ssl=on
ssl_ca_file='@TEST_OUTPUT_DIR@/ts_root.crt'
ssl_cert_file='@TEST_OUTPUT_DIR@/ts_data_node.crt'
ssl_key_file='@TEST_OUTPUT_DIR@/ts_data_node.key'
timescaledb.ssl_dir='@TEST_OUTPUT_DIR@/timescaledb/certs'
wal_level='logical'
timescaledb_experimental.enable_distributed_ddl=on
log_error_verbosity='VERBOSE'
log_min_messages='INFO'
# This breaks isolation tests, not sure why the statements end in
# the isolation tester output.
log_statement='all'