This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 908e2db [IOTDB-716] add lz4 to cpp and python client (#1870)
908e2db is described below
commit 908e2db86075094c07bfa199912b151549727cf4
Author: Haonan <[email protected]>
AuthorDate: Tue Oct 27 21:36:06 2020 +0800
[IOTDB-716] add lz4 to cpp and python client (#1870)
---
client-cpp/src/main/IOTDBSession.h | 2 +-
client-py/src/utils/IoTDBConstants.py | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/client-cpp/src/main/IOTDBSession.h
b/client-cpp/src/main/IOTDBSession.h
index a88c1c0..cf05e36 100644
--- a/client-cpp/src/main/IOTDBSession.h
+++ b/client-cpp/src/main/IOTDBSession.h
@@ -92,7 +92,7 @@ namespace CompressionType{
enum CompressionType
{
- UNCOMPRESSED, SNAPPY, GZIP, LZO, SDT, PAA, PLA
+ UNCOMPRESSED, SNAPPY, GZIP, LZO, SDT, PAA, PLA, LZ4
};
}
namespace TSDataType{
diff --git a/client-py/src/utils/IoTDBConstants.py
b/client-py/src/utils/IoTDBConstants.py
index 7e31262..f8b4f15 100644
--- a/client-py/src/utils/IoTDBConstants.py
+++ b/client-py/src/utils/IoTDBConstants.py
@@ -50,3 +50,4 @@ class Compressor(Enum):
SDT = 4
PAA = 5
PLA = 6
+ LZ4 = 7