File: regress-postgresql.conf

package info (click to toggle)
pglogical 2.4.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,300 kB
  • sloc: ansic: 39,268; sql: 4,466; perl: 693; makefile: 210; sh: 78
file content (32 lines) | stat: -rw-r--r-- 885 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Configuration that affects behaviour being tested:
shared_preload_libraries = 'pglogical'
wal_level = logical
max_wal_senders = 20
max_replication_slots = 20
max_worker_processes = 20
track_commit_timestamp = on
checkpoint_timeout = '30s'
wal_sender_timeout = '120s'

# Purely testing related:
hba_file = './regress-pg_hba.conf'
DateStyle = 'ISO, DMY'
log_line_prefix='[%m] [%p] [%d] '
fsync=off

# Handy things to turn on when debugging
#log_min_messages = debug2
#log_error_verbosity = verbose
#log_statement = 'all'

pglogical.synchronous_commit = true

# Indirection of dsns for testing
pglogical.orig_provider_dsn = 'dbname=sourcedb'
pglogical.provider_dsn = 'dbname=regression'
pglogical.provider1_dsn = 'dbname=regression1'
pglogical.subscriber_dsn = 'dbname=postgres'

# Uncomment to test SPI and multi-insert
#pglogical.use_spi = true
#pglogical.conflict_resolution = error