File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
client-v2/src/test/java/com/clickhouse/client/insert Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1212import java .net .UnknownHostException ;
1313import java .time .LocalDate ;
1414import java .time .LocalDateTime ;
15+ import java .util .ArrayList ;
1516import java .util .Arrays ;
1617import java .util .Collections ;
1718import java .util .HashMap ;
@@ -146,8 +147,13 @@ public SamplePOJO() {
146147 map .put (String .valueOf ((char ) ('a' + i )), i + 1 );
147148 }
148149
149- nestedInnerInt = List .of (random .nextInt (Integer .MAX_VALUE ));
150- nestedInnerString = List .of (RandomStringUtils .randomAlphabetic (1 , 256 ));
150+ List <Integer > innerInt = new ArrayList <>();
151+ innerInt .add (random .nextInt (Integer .MAX_VALUE ));
152+ nestedInnerInt = innerInt ;
153+
154+ List <String > innerString = new ArrayList <>();
155+ innerString .add (RandomStringUtils .randomAlphabetic (1 , 256 ));
156+ nestedInnerString = innerString ;
151157 }
152158
153159 public int getInt8 () {
You can’t perform that action at this time.
0 commit comments