[improvement][launcher]Support DuckDB database and refactor translator code structure.

This commit is contained in:
jerryjzhang
2024-11-30 00:23:16 +08:00
parent 13d4fc3feb
commit a058dc8b6e
74 changed files with 275 additions and 201 deletions

View File

@@ -8,7 +8,8 @@ public enum EngineType {
KAFKA(4, "kafka"),
H2(5, "h2"),
POSTGRESQL(6, "postgresql"),
OTHER(7, "other");
OTHER(7, "other"),
DUCKDB(8, "duckdb");
private Integer code;