1 Commits

Author SHA1 Message Date
guilinlewis
d488356a20 Merge 60bc536ae2 into e171bdd97f 2025-05-25 22:48:49 +08:00
3 changed files with 1 additions and 8 deletions

View File

@@ -13,8 +13,7 @@ public enum EngineType {
STARROCKS(10, "STARROCKS"),
KYUUBI(11, "KYUUBI"),
PRESTO(12, "PRESTO"),
TRINO(13, "TRINO"),
ORACLE(14, "ORACLE");
TRINO(13, "TRINO"),;
private Integer code;

View File

@@ -22,7 +22,6 @@ public class DbAdaptorFactory {
dbAdaptorMap.put(EngineType.KYUUBI.getName(), new KyuubiAdaptor());
dbAdaptorMap.put(EngineType.PRESTO.getName(), new PrestoAdaptor());
dbAdaptorMap.put(EngineType.TRINO.getName(), new TrinoAdaptor());
dbAdaptorMap.put(EngineType.ORACLE.getName(), new OracleAdaptor());
}
public static DbAdaptor getEngineAdaptor(String engineType) {

View File

@@ -1,5 +0,0 @@
package com.tencent.supersonic.headless.core.adaptor.db;
public class OracleAdaptor extends DefaultDbAdaptor {
}