rok commented on code in PR #14293:
URL: https://github.com/apache/arrow/pull/14293#discussion_r1053528994


##########
cpp/src/parquet/encoding.cc:
##########
@@ -3055,6 +3149,14 @@ std::unique_ptr<Encoder> MakeEncoder(Type::type 
type_num, Encoding::type encodin
             "DELTA_BINARY_PACKED encoder only supports INT32 and INT64");
         break;
     }
+  } else if (encoding == Encoding::DELTA_LENGTH_BYTE_ARRAY) {
+    switch (type_num) {
+      case Type::BYTE_ARRAY:
+        return std::unique_ptr<Encoder>(new DeltaLengthByteArrayEncoder(descr, 
pool));
+      default:
+        throw ParquetException("DELTA_LENGTH_BYTE_ARRAY only supports 
BYTE_ARRAY");
+        break;

Review Comment:
   I'm not sure which one you mean.



-- 
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: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to