1# Configuration that affects behaviour being tested:
2shared_preload_libraries = 'pglogical'
3wal_level = logical
4max_wal_senders = 20
5max_replication_slots = 20
6max_worker_processes = 20
7track_commit_timestamp = on
8
9# Purely testing related:
10hba_file = './regress-pg_hba.conf'
11DateStyle = 'ISO, DMY'
12log_line_prefix='[%m] [%p] [%d] '
13fsync=off
14
15# Handy things to turn on when debugging
16#log_min_messages = debug2
17#log_error_verbosity = verbose
18#log_statement = 'all'
19
20pglogical.synchronous_commit = true
21
22# Indirection of dsns for testing
23pglogical.orig_provider_dsn = 'dbname=sourcedb'
24pglogical.provider_dsn = 'dbname=regression'
25pglogical.provider1_dsn = 'dbname=regression1'
26pglogical.subscriber_dsn = 'dbname=postgres'
27
28# Uncomment to test SPI and multi-insert
29#pglogical.use_spi = true
30#pglogical.conflict_resolution = error
31