Skip to content

Commit

Permalink
🐛 Fix missing JDBC properties in catalog creation payload for Apache …
Browse files Browse the repository at this point in the history
…Iceberg
  • Loading branch information
niyushabaghayi committed Nov 4, 2024
1 parent 114529d commit 1329d2b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,9 @@ const CreateCatalogDialog = props => {
uri: uri,
...others
}
jdbcDriver && (properties['jdbc-driver'] = jdbcDriver);
jdbcUser && (properties['jdbc-user'] = jdbcUser);
jdbcPwd && (properties['jdbc-password'] = jdbcPwd);
} else if (catalogBackend && catalogBackend === 'filesystem' && providerSelect === 'lakehouse-paimon') {
properties = {
'catalog-backend': catalogBackend,
Expand Down

0 comments on commit 1329d2b

Please sign in to comment.