Re: pgsql: Server-side gzip compression.

2022-01-25 Thread David Rowley
On Tue, 25 Jan 2022 at 09:14, Robert Haas wrote: > src/backend/replication/basebackup_gzip.c | 309 ++ This could do with the attached. MSVC compilers need a bit more reassurance that ereport/elog ERRORs don't return. David fix_basebackup_gzip_compiler_warning.patch

pgsql: Server-side gzip compression.

2022-01-24 Thread Robert Haas
Server-side gzip compression. pg_basebackup's --compression option now lets you write either "client-gzip" or "server-gzip" instead of just "gzip" to specify where the compression should be performed. If you write simply "gzip" it's taken to mean "client-gzip" unless you also use --target, in whic