You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: seatunnel-common/src/main/java/org/apache/seatunnel/common/exception/CommonErrorCode.java
+4-1
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,10 @@ public enum CommonErrorCode implements SeaTunnelErrorCode {
48
48
"<identifier> <operation> file '<fileName>' failed, because it not existed."),
49
49
WRITE_SEATUNNEL_ROW_ERROR(
50
50
"COMMON-23",
51
-
"<connector> write SeaTunnelRow failed, the SeaTunnelRow value is '<seaTunnelRow>'.");
51
+
"<connector> write SeaTunnelRow failed, the SeaTunnelRow value is '<seaTunnelRow>'."),
52
+
SQL_TEMPLATE_HANDLED_ERROR(
53
+
"COMMON-24",
54
+
"The table of <tableName> has no <keyName>, but the template \n <template> \n which has the place holder named <placeholder>. Please use the option named <optionName> to specify sql template");
Copy file name to clipboardExpand all lines: seatunnel-connectors-v2/connector-doris/src/main/java/org/apache/seatunnel/connectors/doris/config/DorisOptions.java
Copy file name to clipboardExpand all lines: seatunnel-connectors-v2/connector-doris/src/main/java/org/apache/seatunnel/connectors/doris/util/DorisCatalogUtil.java
Copy file name to clipboardExpand all lines: seatunnel-connectors-v2/connector-doris/src/test/java/org/apache/seatunnel/connectors/doris/catalog/DorisCreateTableTest.java
0 commit comments