Hisoka-X commented on code in PR #9072: URL: https://github.com/apache/seatunnel/pull/9072#discussion_r2020734984
########## seatunnel-e2e/seatunnel-connector-v2-e2e/connector-jdbc-e2e/connector-jdbc-e2e-part-2/src/test/java/org/apache/seatunnel/connectors/seatunnel/jdbc/JdbcOceanBaseMilvusIT.java: ########## @@ -275,6 +275,18 @@ public void testMilvusToOceanBase(TestContainer container) throws Exception { } } + @TestTemplate + public void testMilvusToOceanBaseNotTable(TestContainer container) throws Exception { + try { + dropOceanBaseTable(); + Container.ExecResult execResult = + container.executeJob("/jdbc_milvus_source_and_oceanbase_sink.conf"); + Assertions.assertEquals(0, execResult.getExitCode(), execResult.getStderr()); Review Comment: Let's set [schema_save_mode](https://github.com/apache/seatunnel/blob/dev/docs/en/connector-v2/sink/Jdbc.md#schema_save_mode-enum) to `RECREATE_SCHEMA` to force create table. -- 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: commits-unsubscr...@seatunnel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org