Skip to content

Commit 89c1597

Browse files
committed
added missing generic types
1 parent 78a04b9 commit 89c1597

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jdbc-v2/src/test/java/com/clickhouse/jdbc/DataTypeTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2018,10 +2018,10 @@ public Object[][] testJSONReadDP() {
20182018
map3.put("nested.strings", new ArrayList<String>() {{ add("one"); add("two"); add("three"); }});
20192019
Map<String, Object> map4 = new HashMap<>();
20202020
map4.put("array", new ArrayList<HashMap<String,Object>>() {{
2021-
add(new HashMap<>() {{
2021+
add(new HashMap<String, Object>() {{
20222022
put("nested.key", "value");
20232023
}});
2024-
add(new HashMap<>() {{
2024+
add(new HashMap<String, Object>() {{
20252025
put("nested.numbers", new ArrayList<Long>() {{
20262026
add(1L);
20272027
add(2L);
@@ -2032,7 +2032,7 @@ public Object[][] testJSONReadDP() {
20322032
Map<String, Object> map5 = new HashMap<>();
20332033
map5.put("array", new ArrayList<HashMap<String,Object>>() {{
20342034
add(new HashMap<>() {{
2035-
put("nested.strings", new ArrayList<>() {{ add("one"); add("two"); add("three"); }});
2035+
put("nested.strings", new ArrayList<String>() {{ add("one"); add("two"); add("three"); }});
20362036

20372037
}});
20382038
}});

0 commit comments

Comments
 (0)