aboutsummaryrefslogblamecommitdiff
path: root/config.h
blob: 0dcd86b90c4a6b3238be8ee0b5e743b7d83c5923 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                 
static const char *const BASE_OUT = "base.tzst";
static const char *const BASE_BACKUP_ARGV[] = {
	"pg_basebackup",
	"-F", "t",
	"-X", "none",
	"-D", "-",
	NULL,
};
static const char *const BASE_COMPRESS_ARGV[] = {
	"zstd", "-12", "-T0", NULL,
};

static const char *const WAL_EXT = ".zst";
static const char *const WAL_COMPRESS_ARGV[] = {
	"zstd", "-19", "--single-thread", NULL,
};