You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "mapleFU (via GitHub)" <gi...@apache.org> on 2023/03/21 14:10:37 UTC

[GitHub] [arrow] mapleFU opened a new issue, #34660: [C++][Parquet] Decoder: support more DecodeArrow with nulls for `DeltaBitPack` and other decoder

mapleFU opened a new issue, #34660:
URL: https://github.com/apache/arrow/issues/34660

   ### Describe the enhancement requested
   
   Currently, some decoder doesn't support DecodeArrow, like:
   
   ```c++
     int DecodeArrow(int num_values, int null_count, const uint8_t* valid_bits,
                     int64_t valid_bits_offset,
                     typename EncodingTraits<DType>::Accumulator* out) override {
       if (null_count != 0) {
         ParquetException::NYI("Delta bit pack DecodeArrow with null slots");
       }
       std::vector<T> values(num_values);
       int decoded_count = GetInternal(values.data(), num_values);
       PARQUET_THROW_NOT_OK(out->AppendValues(values.data(), decoded_count));
       return decoded_count;
     }
   ```
   
   We need to add and test them later
   
   ### Component(s)
   
   C++, Parquet


-- 
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: issues-unsubscribe@arrow.apache.org.apache.org

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