test case bug fix

This commit is contained in:
dingbo 2021-11-23 18:48:04 +08:00
parent 93a3369eb6
commit 9b2d33b6e1

View File

@ -1,12 +1,12 @@
package com.alibaba.datax.core; package com.alibaba.datax.core;
import org.junit.After;
import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import java.sql.*; import java.sql.*;
import java.util.*; import java.util.Arrays;
import java.util.Date; import java.util.Calendar;
import java.util.List;
import java.util.Random;
/** /**
* 测试从mysql到TD * 测试从mysql到TD
@ -78,6 +78,7 @@ public class TestMysql2TDengine {
psmt.executeBatch(); psmt.executeBatch();
} }
} }
// 有部分重复数据不影响测试
psmt.executeBatch(); psmt.executeBatch();
} }
@ -91,7 +92,8 @@ public class TestMysql2TDengine {
try { try {
conn = DriverManager.getConnection("jdbc:TAOS://127.0.0.1:6030/log?user=root&password=taosdata"); conn = DriverManager.getConnection("jdbc:TAOS://127.0.0.1:6030/log?user=root&password=taosdata");
stmt = conn.createStatement(); stmt = conn.createStatement();
stmt.execute("create database if not exists test"); stmt.execute("drop database if exists test");
stmt.execute("create database if not exists test keep 36500");
stmt.execute("drop stable if exists test.weather"); stmt.execute("drop stable if exists test.weather");
} finally { } finally {
if (stmt != null) { if (stmt != null) {