mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 17:41:59 +00:00
12 lines
349 B
C
12 lines
349 B
C
#ifndef DBMS_COMMON_COMPRESSING_STREAM_DEFINES_H
|
|
#define DBMS_COMMON_COMPRESSING_STREAM_DEFINES_H
|
|
|
|
/** Общие для CompressingStream.h и DecompressingStream.h дефайны */
|
|
|
|
#define DBMS_STREAM_BUFFER_SIZE 4096
|
|
#define DBMS_COMPRESSING_STREAM_BUFFER_SIZE 1048576
|
|
#define QUICKLZ_ADDITIONAL_SPACE 400
|
|
#define QUICKLZ_HEADER_SIZE 9
|
|
|
|
#endif
|