pgsql: Add support for building with ZSTD.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add support for building with ZSTD.
Date: 2022-02-18 18:53:10
Message-ID: E1nL8NS-0007eH-9y@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

Add support for building with ZSTD.

This commit doesn't actually add anything that uses ZSTD; that will be
done separately. It just puts the basic infrastructure into place.

Jeevan Ladhe, Robert Haas, and Michael Paquier. Reviewed by Justin
Pryzby and Andres Freund.

Discussion: http://postgr.es/m/CA+TgmoatQKGd+8SjcV+bzvw4XaoEwminHjU83yG12+NXtQzTTQ@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/6c417bbcc8ff98875234ca269979fc7defde58e5

Modified Files
--------------
configure | 265 ++++++++++++++++++++++++++++++++++++++
configure.ac | 33 +++++
doc/src/sgml/install-windows.sgml | 9 ++
doc/src/sgml/installation.sgml | 9 ++
src/Makefile.global.in | 1 +
src/include/pg_config.h.in | 6 +
src/tools/msvc/Solution.pm | 13 ++
src/tools/msvc/config_default.pl | 1 +
src/tools/msvc/vcregress.pl | 1 +
9 files changed, 338 insertions(+)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2022-02-18 20:35:30 pgsql: Rearrange libpq's error reporting to avoid duplicated error text
Previous Message Tom Lane 2022-02-18 16:43:20 pgsql: Don't let libpq PGEVT_CONNRESET callbacks break a PGconn.

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2022-02-18 18:53:39 Re: adding 'zstd' as a compression algorithm
Previous Message Robert Haas 2022-02-18 18:27:16 Re: Condition pushdown: why (=) is pushed down into join, but BETWEEN or >= is not?