| 97 | }; |
| 98 | |
| 99 | inline std::span<const uint8_t> str2span(const std::string& str) { |
| 100 | if (str.empty()) { |
| 101 | return {}; |
| 102 | } |
| 103 | |
| 104 | return {reinterpret_cast<const uint8_t*>(str.data()), str.size()}; |
| 105 | } |
| 106 | |
| 107 | class PARQUET_EXPORT ColumnEncryptionProperties { |
| 108 | public: |