| 97 | } |
| 98 | |
| 99 | arrow::Status PyCryptoFactory::SafeRotateMasterKeys( |
| 100 | const ::parquet::encryption::KmsConnectionConfig& kms_connection_config, |
| 101 | const std::string& parquet_file_path, |
| 102 | const std::shared_ptr<::arrow::fs::FileSystem>& filesystem, bool double_wrapping, |
| 103 | double cache_lifetime_seconds) { |
| 104 | PARQUET_CATCH_NOT_OK(this->RotateMasterKeys(kms_connection_config, parquet_file_path, |
| 105 | filesystem, double_wrapping, |
| 106 | cache_lifetime_seconds)); |
| 107 | return arrow::Status::OK(); |
| 108 | } |
| 109 | |
| 110 | } // namespace encryption |
| 111 | } // namespace parquet |
nothing calls this directly
no test coverage detected