This is an automated email from the ASF dual-hosted git repository.
mchades pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new 1362da02c [#5355] export Paimon jdbc user and password to properites
(#5376)
1362da02c is described below
commit 1362da02cad61acc427d6d6ac84934be54195f67
Author: FANNG <[email protected]>
AuthorDate: Thu Oct 31 15:52:20 2024 +0800
[#5355] export Paimon jdbc user and password to properites (#5376)
### What changes were proposed in this pull request?
export paimon jdbc user and password to properites
### Why are the changes needed?
Fix: #5355
### Does this PR introduce _any_ user-facing change?
no
### How was this patch tested?
existing IT
---
.../catalog/lakehouse/paimon/PaimonCatalogPropertiesMetadata.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/catalogs/catalog-lakehouse-paimon/src/main/java/org/apache/gravitino/catalog/lakehouse/paimon/PaimonCatalogPropertiesMetadata.java
b/catalogs/catalog-lakehouse-paimon/src/main/java/org/apache/gravitino/catalog/lakehouse/paimon/PaimonCatalogPropertiesMetadata.java
index 246ab5d04..e3b59bff3 100644
---
a/catalogs/catalog-lakehouse-paimon/src/main/java/org/apache/gravitino/catalog/lakehouse/paimon/PaimonCatalogPropertiesMetadata.java
+++
b/catalogs/catalog-lakehouse-paimon/src/main/java/org/apache/gravitino/catalog/lakehouse/paimon/PaimonCatalogPropertiesMetadata.java
@@ -128,13 +128,13 @@ public class PaimonCatalogPropertiesMetadata extends
BaseCatalogPropertiesMetada
"Gravitino Paimon catalog jdbc user",
false /* immutable */,
null /* defaultValue */,
- true /* hidden */),
+ false /* hidden */),
stringOptionalPropertyEntry(
GRAVITINO_JDBC_PASSWORD,
"Gravitino Paimon catalog jdbc password",
false /* immutable */,
null /* defaultValue */,
- true /* hidden */),
+ false /* hidden */),
stringOptionalPropertyEntry(
GRAVITINO_JDBC_DRIVER,
"The driver of the Jdbc connection",