(
&self,
id: &str,
)
| 226 | /// Retrieve an [`EncryptionFactory`] by its identifier |
| 227 | #[cfg(feature = "parquet_encryption")] |
| 228 | pub fn parquet_encryption_factory( |
| 229 | &self, |
| 230 | id: &str, |
| 231 | ) -> Result<Arc<dyn EncryptionFactory>> { |
| 232 | self.parquet_encryption_factory_registry.get_factory(id) |
| 233 | } |
| 234 | |
| 235 | /// Returns the current runtime configuration entries |
| 236 | pub fn config_entries(&self) -> Vec<ConfigEntry> { |
no test coverage detected