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 a394836 commit 2f5ee44Copy full SHA for 2f5ee44
1 file changed
rust/operator-binary/src/catalog/postgresql.rs
@@ -22,7 +22,7 @@ impl ToCatalogConfig for PostgresqlConnector {
22
_trino_version: u16,
23
) -> Result<CatalogConfig, FromTrinoCatalogError> {
24
let mut config = CatalogConfig::new(catalog_name.to_string(), CONNECTOR_NAME);
25
- // SAFETY: `unique_database_name` must only contains uppercase ASCII letters and underscores.
+ // SAFETY: `unique_database_name` must only contain uppercase ASCII letters and underscores.
26
let unique_database_name = format!(
27
"POSTGRESQL_{}",
28
catalog_name.replace('-', "_").to_uppercase()
0 commit comments