This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new b19ca07bad1 branch-4.0: [fix](jdbc) Skip the default creation check
logic #57983 (#58121)
b19ca07bad1 is described below
commit b19ca07bad1f58094112a473562ade7c164f9d15
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Nov 20 08:57:58 2025 +0800
branch-4.0: [fix](jdbc) Skip the default creation check logic #57983
(#58121)
Cherry-picked from #57983
Co-authored-by: zy-kkk <[email protected]>
---
.../main/java/org/apache/doris/datasource/jdbc/JdbcExternalCatalog.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/datasource/jdbc/JdbcExternalCatalog.java
b/fe/fe-core/src/main/java/org/apache/doris/datasource/jdbc/JdbcExternalCatalog.java
index 02921aaabbb..6cf28f5da37 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/datasource/jdbc/JdbcExternalCatalog.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/datasource/jdbc/JdbcExternalCatalog.java
@@ -311,7 +311,7 @@ public class JdbcExternalCatalog extends ExternalCatalog {
@Override
public void checkWhenCreating() throws DdlException {
- super.checkWhenCreating();
+ // Skip super.checkWhenCreating() for now;
Map<String, String> properties = catalogProperty.getProperties();
if (properties.containsKey(JdbcResource.DRIVER_URL)) {
String computedChecksum =
JdbcResource.computeObjectChecksum(properties.get(JdbcResource.DRIVER_URL));
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]