Skip to content

Commit

Permalink
[apache#5306][Improvement] Some JDBC catalog properties should be def…
Browse files Browse the repository at this point in the history
…ined as required
  • Loading branch information
lsyulong committed Oct 30, 2024
1 parent 36757d5 commit 8d2d15e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,23 +61,23 @@ public class JdbcCatalogPropertiesMetadata extends BaseCatalogPropertiesMetadata
false /* immutable */,
null /* defaultValue */,
false /* hidden */),
stringPropertyEntry(
stringPropertyEntry(
JdbcConfig.JDBC_DRIVER.getKey(),
JdbcConfig.JDBC_DRIVER.getDoc(),
true /* required */,
false /* immutable */,
null /* defaultValue */,
false /* hidden */,
false /* reserved */),
stringPropertyEntry(
stringPropertyEntry(
JdbcConfig.USERNAME.getKey(),
JdbcConfig.USERNAME.getDoc(),
true /* required */,
false /* immutable */,
null /* defaultValue */,
false /* hidden */,
false /* reserved */),
stringPropertyEntry(
stringPropertyEntry(
JdbcConfig.PASSWORD.getKey(),
JdbcConfig.PASSWORD.getDoc(),
true /* required */,
Expand Down

0 comments on commit 8d2d15e

Please sign in to comment.