| 61 | } |
| 62 | |
| 63 | void appendArrowMetadataInt32(std::string& metadata, int32_t value) { |
| 64 | metadata.append(reinterpret_cast<const char*>(&value), sizeof(value)); |
| 65 | } |
| 66 | |
| 67 | // Structure that will hold the buffers needed by ArrowArray. This is opaquely |
| 68 | // carried by ArrowArray.private_data |
no test coverage detected