This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a commit to branch object_type
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/object_type by this push:
new 3e43c052f7e delete useless print
3e43c052f7e is described below
commit 3e43c052f7ebf33450e7409fb5ed1b861f8c0328
Author: JackieTien97 <[email protected]>
AuthorDate: Sun Jul 13 12:12:47 2025 +0800
delete useless print
---
.../service-rpc/src/main/java/org/apache/iotdb/rpc/SerdeUtils.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/iotdb-client/service-rpc/src/main/java/org/apache/iotdb/rpc/SerdeUtils.java
b/iotdb-client/service-rpc/src/main/java/org/apache/iotdb/rpc/SerdeUtils.java
index 31b63d12422..4672239691c 100644
---
a/iotdb-client/service-rpc/src/main/java/org/apache/iotdb/rpc/SerdeUtils.java
+++
b/iotdb-client/service-rpc/src/main/java/org/apache/iotdb/rpc/SerdeUtils.java
@@ -68,7 +68,6 @@ public class SerdeUtils {
ReadWriteIOUtils.write(compressionType.serialize(), res);
ReadWriteIOUtils.write((int) valueSize, res);
res.put(compressedValue);
- System.out.println("compression ratio: " + compressedValue.length * 1.0
/ valueSize);
return res.array();
}
}