Hisoka-X commented on code in PR #7879:
URL: https://github.com/apache/seatunnel/pull/7879#discussion_r1808041286


##########
seatunnel-e2e/seatunnel-connector-v2-e2e/connector-jdbc-e2e/connector-jdbc-e2e-part-1/src/test/resources/jdbc_db2_source_and_sink_upsert.conf:
##########
@@ -0,0 +1,56 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+env {
+  parallelism = 1
+  job.mode = "BATCH"
+}
+
+source {
+  # This is a example source plugin **only for test and demonstrate the 
feature source plugin**
+  Jdbc {
+    driver = com.ibm.db2.jcc.DB2Driver
+    url = "jdbc:db2://db2-e2e:50000/E2E"
+    user = "db2inst1"
+    password = "123456"
+    query = """
+    select * from "E2E".SOURCE;
+    """
+  }
+
+  # If you would like to get more information about how to configure seatunnel 
and see full list of source plugins,
+  # please go to https://seatunnel.apache.org/docs/connector-v2/source/Jdbc
+}
+
+sink {
+  Jdbc {
+    driver = com.ibm.db2.jcc.DB2Driver
+    url = "jdbc:db2://db2-e2e:50000/E2E"
+    user = "db2inst1"
+    password = "123456"
+    database = "E2E"
+    table = "SINK"
+    # The primary keys of the table, which will be used to generate the upsert 
sql
+    generate_sink_sql = true

Review Comment:
   Please force set `enable_upsert` to `true` to avoid the test case broken 
when the default value changed.  



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to