bbsink *
bbsink_lz4_new(bbsink *next, bc_specification *compress)
{
- int compresslevel;
-
#ifndef USE_LZ4
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
return NULL; /* keep compiler quiet */
#else
bbsink_lz4 *sink;
+ int compresslevel;
Assert(next != NULL);
bbsink *
bbsink_zstd_new(bbsink *next, bc_specification *compress)
{
- int compresslevel;
-
#ifndef USE_ZSTD
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
return NULL; /* keep compiler quiet */
#else
bbsink_zstd *sink;
+ int compresslevel;
Assert(next != NULL);