(self, _catalog: &dyn SessionCatalog)
| 51 | } |
| 52 | |
| 53 | fn try_into_value(self, _catalog: &dyn SessionCatalog) -> Option<WithOptionValue<Aug>> { |
| 54 | Some(WithOptionValue::Value(Value::String(match self { |
| 55 | IcebergCatalogType::Rest => "rest".to_string(), |
| 56 | IcebergCatalogType::S3TablesRest => "s3tablesrest".to_string(), |
| 57 | }))) |
| 58 | } |
| 59 | |
| 60 | fn name() -> String { |
| 61 | "iceberg catalog type".to_string() |
nothing calls this directly
no test coverage detected