-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Closed
Copy link
Description
Describe the enhancement requested
Subissue of #43549
For types of
arrow/cpp/src/parquet/arrow/reader_internal.cc
Lines 321 to 323 in 2fac185
| template <typename ArrowType, typename ParquetType> | |
| Status TransferInt(RecordReader* reader, MemoryPool* pool, | |
| const std::shared_ptr<Field>& field, Datum* out) { |
arrow/cpp/src/parquet/arrow/reader_internal.cc
Lines 767 to 776 in 2fac185
| TRANSFER_INT32(UINT8, ::arrow::UInt8Type); | |
| TRANSFER_INT32(INT8, ::arrow::Int8Type); | |
| TRANSFER_INT32(UINT16, ::arrow::UInt16Type); | |
| TRANSFER_INT32(INT16, ::arrow::Int16Type); | |
| TRANSFER_INT32(UINT32, ::arrow::UInt32Type); | |
| TRANSFER_INT64(UINT64, ::arrow::UInt64Type); | |
| TRANSFER_INT32(DATE32, ::arrow::Date32Type); | |
| TRANSFER_INT32(TIME32, ::arrow::Time32Type); | |
| TRANSFER_INT64(TIME64, ::arrow::Time64Type); | |
| TRANSFER_INT64(DURATION, ::arrow::DurationType); |
UInt8Int8UInt16Int16UInt32UInt64Date32Time32Time64Duration
Component(s)
C++, Parquet