pgsql: Move pg_lzcompress.c to src/common. - Mailing list pgsql-committers

From Fujii Masao
Subject pgsql: Move pg_lzcompress.c to src/common.
Date
Msg-id E1Y46tC-0000qW-Qt@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Move pg_lzcompress.c to src/common.  (Fujii Masao <masao.fujii@gmail.com>)
List pgsql-committers
Move pg_lzcompress.c to src/common.

Exposing compression and decompression APIs of pglz makes possible its
use by extensions and contrib modules. pglz_decompress contained a call
to elog to emit an error message in case of corrupted data. This function
is changed to return a status code to let its callers return an error instead.

This commit is required for upcoming WAL compression feature so that
the WAL reader facility can decompress the WAL data by using pglz_decompress.

Michael Paquier

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/60838df922345b26a616e49ac9fab808a35d1f85

Modified Files
--------------
src/backend/access/heap/tuptoaster.c  |   11 +-
src/backend/utils/adt/Makefile        |    4 +-
src/backend/utils/adt/pg_lzcompress.c |  779 --------------------------------
src/common/Makefile                   |    3 +-
src/common/pg_lzcompress.c            |  786 +++++++++++++++++++++++++++++++++
src/include/common/pg_lzcompress.h    |  112 +++++
src/include/utils/pg_lzcompress.h     |  112 -----
src/tools/msvc/Mkvcbuild.pm           |    3 +-
8 files changed, 911 insertions(+), 899 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Add CST (China Standard Time) to our lists of timezone abbreviat
Next
From: Fujii Masao
Date:
Subject: Re: pgsql: Move pg_lzcompress.c to src/common.