Github user paul-rogers commented on a diff in the pull request:
https://github.com/apache/drill/pull/1060#discussion_r158183275
--- Diff: protocol/src/main/protobuf/UserBitShared.proto ---
@@ -148,6 +148,8 @@ message SerializedField {
optional int32 value_count = 4;
optional int32 var_byte_length = 5;
optional int32 buffer_length = 7;
+ optional bool is_dup = 8;
+ optional int32 logical_value_count = 9;
--- End diff --
We are updating the serialized field to (presumably) handle repeated
values. But, did we update the JDBC and ODBC drivers to match?
---