| 1563 | |
| 1564 | template <typename c_type> |
| 1565 | static std::vector<c_type> ToLittleEndian(const std::vector<c_type>& input) { |
| 1566 | std::vector<c_type> data(input.size()); |
| 1567 | std::transform(input.begin(), input.end(), data.begin(), [](const c_type& value) { |
| 1568 | return ::arrow::bit_util::ToLittleEndian(value); |
| 1569 | }); |
| 1570 | return data; |
| 1571 | } |
| 1572 | |
| 1573 | std::shared_ptr<ColumnDescriptor> FLBAColumnDescriptor(int type_length) { |
| 1574 | auto node = |
no test coverage detected