We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db3725c commit 6d06aadCopy full SHA for 6d06aad
jdbc-v2/src/test/java/com/clickhouse/jdbc/PreparedStatementTest.java
@@ -591,7 +591,9 @@ void testClearParameters() throws Exception {
591
@Test
592
void testBatchInsert() throws Exception {
593
String table = "test_batch";
594
- Random rnd = new Random();
+ long seed = System.currentTimeMillis();
595
+ Random rnd = new Random(seed);
596
+ System.out.println("testBatchInsert seed" + seed);
597
Properties properties = new Properties();
598
properties.put(DriverProperties.BETA_ROW_BINARY_WRITER.getKey(), "true");
599
try (Connection conn = getJdbcConnection(properties)) {
0 commit comments