mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
13 lines
404 B
C
13 lines
404 B
C
#ifndef DBMS_COMMON_COMPRESSING_STREAM_DEFINES_H
|
|
#define DBMS_COMMON_COMPRESSING_STREAM_DEFINES_H
|
|
|
|
/** Общие для CompressingStream.h и DecompressingStream.h дефайны */
|
|
|
|
#define DBMS_MAX_COMPRESSED_SIZE 0x40000000ULL /// 1GB
|
|
#define DBMS_STREAM_BUFFER_SIZE 4096
|
|
#define DBMS_COMPRESSING_STREAM_BUFFER_SIZE 1048576
|
|
#define QUICKLZ_ADDITIONAL_SPACE 400
|
|
#define QUICKLZ_HEADER_SIZE 9
|
|
|
|
#endif
|