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 29, 2024
1 parent 64e27ba commit 36757d5
Showing 1 changed file with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,24 +61,30 @@ public class JdbcCatalogPropertiesMetadata extends BaseCatalogPropertiesMetadata
false /* immutable */,
null /* defaultValue */,
false /* hidden */),
stringOptionalPropertyEntry(
stringPropertyEntry(
JdbcConfig.JDBC_DRIVER.getKey(),
JdbcConfig.JDBC_DRIVER.getDoc(),
true /* required */,
false /* immutable */,
null /* defaultValue */,
false /* hidden */),
stringOptionalPropertyEntry(
false /* hidden */,
false /* reserved */),
stringPropertyEntry(
JdbcConfig.USERNAME.getKey(),
JdbcConfig.USERNAME.getDoc(),
true /* required */,
false /* immutable */,
null /* defaultValue */,
false /* hidden */),
stringOptionalPropertyEntry(
false /* hidden */,
false /* reserved */),
stringPropertyEntry(
JdbcConfig.PASSWORD.getKey(),
JdbcConfig.PASSWORD.getDoc(),
true /* required */,
false /* immutable */,
null /* defaultValue */,
false /* hidden */),
false /* hidden */,
false /* reserved */),
integerPropertyEntry(
JdbcConfig.POOL_MIN_SIZE.getKey(),
JdbcConfig.POOL_MIN_SIZE.getDoc(),
Expand Down

0 comments on commit 36757d5

Please sign in to comment.