We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b63fe1 commit fcc4437Copy full SHA for fcc4437
1 file changed
rust/operator-binary/src/crd/database.rs
@@ -39,9 +39,9 @@ impl MetadataDatabaseConnection {
39
/// Name of the database as it should be passed using `METADATA_STORAGE_TYPE` ("druid.metadata.storage.type") property.
40
pub fn as_metadata_storage_type(&self) -> &str {
41
match self {
42
- MetadataDatabaseConnection::Postgresql(_) => "postgresql",
43
- MetadataDatabaseConnection::Mysql(_) => "mysql",
44
- MetadataDatabaseConnection::Derby(_) => "derby",
+ Self::Postgresql(_) => "postgresql",
+ Self::Mysql(_) => "mysql",
+ Self::Derby(_) => "derby",
45
}
46
47
0 commit comments