Skip to content

Commit b19ca07

Browse files
branch-4.0: [fix](jdbc) Skip the default creation check logic #57983 (#58121)
Cherry-picked from #57983 Co-authored-by: zy-kkk <[email protected]>
1 parent efa2339 commit b19ca07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fe/fe-core/src/main/java/org/apache/doris/datasource/jdbc/JdbcExternalCatalog.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ public List<Column> listColumns(String remoteDbName, String remoteTblName) {
311311

312312
@Override
313313
public void checkWhenCreating() throws DdlException {
314-
super.checkWhenCreating();
314+
// Skip super.checkWhenCreating() for now;
315315
Map<String, String> properties = catalogProperty.getProperties();
316316
if (properties.containsKey(JdbcResource.DRIVER_URL)) {
317317
String computedChecksum = JdbcResource.computeObjectChecksum(properties.get(JdbcResource.DRIVER_URL));

0 commit comments

Comments
 (0)