File tree 9 files changed +31
-9
lines changed
r2dbc/clickhouse-r2dbc-spring-webflux-sample
9 files changed +31
-9
lines changed Original file line number Diff line number Diff line change
1
+
2
+ ## 0.8.6
3
+
4
+ ### Improvements
5
+ - [ jdbc-v2] Now using Antlr4 to parse SQL statements to get meta information about it.
6
+ Invalid SQL still possible to execute if logic able to get all required information. (https://github.com/ClickHouse/clickhouse-java/pull/2351 )
7
+ - [ jdbc-v2] Now possible to use ` RowBinaryWriter ` if enabled by property ` com.clickhouse.jdbc.internal.DriverProperties.BETA_ROW_BINARY_WRITER ` .
8
+ This works well for batches. Single statements may get no benefits. (https://github.com/ClickHouse/clickhouse-java/pull/2316 )
9
+
10
+ ### Bug Fixes
11
+
12
+ - [ jdbc-v2] Fixed parsing prepared statement arguments. (https://github.com/ClickHouse/clickhouse-java/issues/2348 )
13
+ - [ jdbc-v2] Fixed parsing role name when it contains ` - ` . (https://github.com/ClickHouse/clickhouse-java/issues/2325 )
14
+ - [ jdbc-v2] Fixed failure when ` INSERT ` doesn't contain ` VALUES ` . (https://github.com/ClickHouse/clickhouse-java/issues/2283 )
15
+ - [ jdbc-v2] Fixed parsing ` INSERT ` statement when ` VALUES ` is in lower case. (https://github.com/ClickHouse/clickhouse-java/issues/2354 )
16
+ - [ client-v2] Fixed NPE when async operation is request while client was built without an executor.
17
+ In this case default JVM executor will be used. (https://github.com/ClickHouse/clickhouse-java/issues/2355 )
18
+ - [ client-v2, jdbc-v2] Fixed conversion of IP addresses. When IPv4 stored as IPv6 it is correctly converted
19
+ to ` Inet6Address ` . Similar problem fixed for JDBC. (https://github.com/ClickHouse/clickhouse-java/issues/2342 )
20
+ - [ jdbc-v2] Fixed changing DB schema (DB name) on connection when ` USE ` statement executed. (https://github.com/ClickHouse/clickhouse-java/issues/2137 )
21
+ - [ client-v2] Fixed serializing POJO with primitive ` boolean ` fields. (https://github.com/ClickHouse/clickhouse-java/issues/2248 )
22
+
1
23
## 0.8.5
2
24
3
25
### Improvements
Original file line number Diff line number Diff line change 54
54
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
55
55
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
56
56
57
- <clickhouse-java .version>0.8.5 -SNAPSHOT</clickhouse-java .version>
57
+ <clickhouse-java .version>0.8.6 -SNAPSHOT</clickhouse-java .version>
58
58
59
59
<compiler-plugin .version>3.8.1</compiler-plugin .version>
60
60
Original file line number Diff line number Diff line change 40
40
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
41
41
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
42
42
43
- <clickhouse-java .version>0.8.5 -SNAPSHOT</clickhouse-java .version>
43
+ <clickhouse-java .version>0.8.6 -SNAPSHOT</clickhouse-java .version>
44
44
<!-- Nightly snapshot version from https://s01.oss.sonatype.org/content/repositories/snapshots/ or latest from local -->
45
- <!-- <clickhouse-java.version>0.8.5 -SNAPSHOT</clickhouse-java.version>-->
45
+ <!-- <clickhouse-java.version>0.8.6 -SNAPSHOT</clickhouse-java.version>-->
46
46
47
47
<apache-httpclient .version>5.2.1</apache-httpclient .version>
48
48
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ ktor_version=2.3.12
3
3
kotlin_version =2.0.20
4
4
logback_version =1.4.14
5
5
6
- ch_java_client_version =0.8.5
6
+ ch_java_client_version =0.8.6
Original file line number Diff line number Diff line change 1
1
2
- ch_java_client_version =0.8.5
2
+ ch_java_client_version =0.8.6
Original file line number Diff line number Diff line change 47
47
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
48
48
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
49
49
50
- <clickhouse-java .version>0.8.5 -SNAPSHOT</clickhouse-java .version>
50
+ <clickhouse-java .version>0.8.6 -SNAPSHOT</clickhouse-java .version>
51
51
<hikaricp .version>4.0.3</hikaricp .version>
52
52
<apache-httpclient .version>5.2.1</apache-httpclient .version>
53
53
Original file line number Diff line number Diff line change 14
14
<properties >
15
15
<maven .compiler.source>1.8</maven .compiler.source>
16
16
<maven .compiler.target>1.8</maven .compiler.target>
17
- <clickhouse-java .version>0.8.5 -SNAPSHOT</clickhouse-java .version>
17
+ <clickhouse-java .version>0.8.6 -SNAPSHOT</clickhouse-java .version>
18
18
<spring-boot-starter .version>2.7.18</spring-boot-starter .version>
19
19
</properties >
20
20
Original file line number Diff line number Diff line change 15
15
<properties >
16
16
<apache .httpclient.version>5.3.1</apache .httpclient.version>
17
17
<slf4j .version>2.0.17</slf4j .version>
18
- <ch .jdbc.revision>0.8.5 -SNAPSHOT</ch .jdbc.revision>
18
+ <ch .jdbc.revision>0.8.6 -SNAPSHOT</ch .jdbc.revision>
19
19
<jmh .version>1.37</jmh .version>
20
20
<testcontainers .version>1.20.6</testcontainers .version>
21
21
Original file line number Diff line number Diff line change 80
80
</distributionManagement >
81
81
82
82
<properties >
83
- <revision >0.8.5 -SNAPSHOT</revision >
83
+ <revision >0.8.6 -SNAPSHOT</revision >
84
84
<project .current.year>2025</project .current.year>
85
85
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
86
86
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
You can’t perform that action at this time.
0 commit comments