You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,6 @@
10
10
### Important Changes
11
11
-[client-v2] New transport layer implementation is used by default. It is still possible to switch back
12
12
using old implementation by setting `com.clickhouse.client.api.Client.Builder#useNewImplementation` to `false`. (https://github.com/ClickHouse/clickhouse-java/pull/1847)
13
-
-[doc] Main documentation on official ClickHouse website is updated. See https://clickhouse.com/docs/en/integrations/java.
14
-
Each client has its own page with detailed information. Added documentation for client v2.
15
13
16
14
### New Features
17
15
-[client-v2] Now there is an easy way to set custom header globally for client and per operation.
@@ -32,7 +30,14 @@ bytecode (with help of https://asm.ow2.io/ library) and optimized for each schem
32
30
because data is read without additional copies. As serde code is implemented without reflection using JVM bytecode
33
31
then code can be optimized by JVM while runtime. Using ASM allows handle primitive types without boxing. (https://github.com/ClickHouse/clickhouse-java/pull/1794,
-[client-v2] Optimized reading columns - internally data is read into map of column-values. It is done
34
+
to allow reading same column more than once. Previously map was cleared each row what caused a lot
35
+
internal objects creation. Now values are overridden because schema doesn't change between rows. (https://github.com/ClickHouse/clickhouse-java/pull/1795)
35
36
37
+
### Documentation
38
+
-[client-v2] Added example for Kotlin (https://github.com/ClickHouse/clickhouse-java/pull/1793)
39
+
-[doc] Main documentation on official ClickHouse website is updated. See https://clickhouse.com/docs/en/integrations/java.
40
+
Each client has its own page with detailed information. Added documentation for client v2.
36
41
37
42
### Bug Fixes
38
43
-[client-v2] Fix for case when missing operation metrics were causing NPE. (https://github.com/ClickHouse/clickhouse-java/pull/1846)
0 commit comments