RkGrit commented on code in PR #110:
URL: https://github.com/apache/tsfile/pull/110#discussion_r1650286000
##########
cpp/src/encoding/dictionary_encoder.h:
##########
@@ -95,6 +95,11 @@ class DictionaryEncoder {
void write_encoded_data(common::ByteStream &out) {
values_encoder_.encode_flush(out);
}
+
+ int get_max_byte_size()
+ {
+ return 4 + map_size_ + values_encoder_.get_max_byte_size();
Review Comment:
In c++ edition, we don't hava RleEncoder and the DictionaryEncoder is not in
use currently.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]