Skip to content

Commit 84c080b

Browse files
authored
Merge pull request #2564 from ClickHouse/pre_0.9.2
Pre 0.9.2
2 parents be150ab + aaf9886 commit 84c080b

File tree

10 files changed

+40
-10
lines changed

10 files changed

+40
-10
lines changed

.github/workflows/run_examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
nightly_version:
1717
description: Nightly Version
1818
required: false
19-
default: 0.9.1-SNAPSHOT
19+
default: 0.9.2-SNAPSHOT
2020

2121
concurrency:
2222
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.event.number || github.sha }}

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
## 0.9.2
2+
3+
### Improvements
4+
- [jdbc-v2] Classes `com.clickhouse.jdbc.ClientInfoProperties` and `com.clickhouse.jdbc.DriverProperties` moved to public
5+
API. (https://github.com/ClickHouse/clickhouse-java/pull/2521)
6+
- [jdbc-v2] Implemented `isBeforeFirst`, `isAfterLast`, `isFirst`, `isLast` methods for `ResultSet` and `ResultSetMetaData`.
7+
Improved test coverage for `ResultSetImpl`. (https://github.com/ClickHouse/clickhouse-java/pull/2530)
8+
- [jdbc-v2] Implemented `createArray` and `createStruct` methods for `Connection` interface. Method `createStruct`
9+
should be used to create `Tuple` values and `createArray` to create various arrays. (https://github.com/ClickHouse/clickhouse-java/pull/2523)
10+
- [jdbc-v2] Implemented `setNetworkTimeout` of `Connection` interface. Used to fail fast when network operation fails. Related to
11+
stale connection problem. (https://github.com/ClickHouse/clickhouse-java/pull/2522)
12+
- [client-v2] Added support for JSON with predefined paths. Previously columns with definition like `JSON(a string, b.c Int32)`
13+
were not supported. (https://github.com/ClickHouse/clickhouse-java/pull/2531)
14+
15+
### Bug Fixes
16+
- [jdbc-v2] Fixed issue creating array of tuples with `createArray` method of `Connection` interface.
17+
(https://github.com/ClickHouse/clickhouse-java/issues/2360)
18+
- [jdbc-v2] Fixed issue with reading nested arrays. (https://github.com/ClickHouse/clickhouse-java/issues/2539)
19+
- [jdbc-v2] Fixed issue with not shaded antlr4-runtime dependency. Potential problem for Apache Spark users. (https://github.com/ClickHouse/clickhouse-java/issues/2553)
20+
- [jdbc-v2] Fixed issue with parsing CTE for prepared statement. (https://github.com/ClickHouse/clickhouse-java/issues/2551)
21+
- [jdbc-v2] Fixed issue with parsing SQL containing view parameters. (https://github.com/ClickHouse/clickhouse-java/issues/2547)
22+
- [jdbc-v2] Fixed issue with `InsertSettings` when two concurrent insert operations sharing same settings object may be insert
23+
wrong columns or to a wrong table. (https://github.com/ClickHouse/clickhouse-java/pull/2550)
24+
- [jdbc-v2] Fixed issue with batch insert when it is not cleared after execution. Now batch is cleared after execution even on failure. (https://github.com/ClickHouse/clickhouse-java/issues/2548)
25+
- [jdbc-v2] Fixed `DatabaseMetadataImpl` to return result set with defined by spec structure. Resolves issue for many database tools
26+
relying on metadata. (https://github.com/ClickHouse/clickhouse-java/issues/2396)
27+
- [jdbc-v2] Fixed `DatabaseMetadataImpl` to return empty result set where appropriate. (https://github.com/ClickHouse/clickhouse-java/issues/2517)
28+
- [jdbc-v2] Fixed issue with verbose logging. (https://github.com/ClickHouse/clickhouse-java/issues/2148)
29+
- [client-v2] Fixed issue with reading JSON with predefined paths. (https://github.com/ClickHouse/clickhouse-java/issues/2462)
30+
131
## 0.9.1
232

333
### New Features

examples/client-v2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5555
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5656

57-
<clickhouse-java.version>0.9.1-SNAPSHOT</clickhouse-java.version>
57+
<clickhouse-java.version>0.9.2-SNAPSHOT</clickhouse-java.version>
5858

5959
<compiler-plugin.version>3.8.1</compiler-plugin.version>
6060

examples/client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4141
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
4242

43-
<clickhouse-java.version>0.9.1-SNAPSHOT</clickhouse-java.version>
43+
<clickhouse-java.version>0.9.2-SNAPSHOT</clickhouse-java.version>
4444
<!-- Nightly snapshot version from https://central.sonatype.com/repository/maven-snapshots/or latest from local -->
45-
<!-- <clickhouse-java.version>0.9.1-SNAPSHOT</clickhouse-java.version>-->
45+
<!-- <clickhouse-java.version>0.9.2-SNAPSHOT</clickhouse-java.version>-->
4646

4747
<apache-httpclient.version>5.2.1</apache-httpclient.version>
4848

examples/demo-kotlin-service/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ ktor_version=2.3.12
33
kotlin_version=2.0.20
44
logback_version=1.4.14
55

6-
ch_java_client_version=0.9.1
6+
ch_java_client_version=0.9.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
ch_java_client_version=0.9.1
2+
ch_java_client_version=0.9.2

examples/jdbc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5555
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5656

57-
<clickhouse-java.version>0.9.1-SNAPSHOT</clickhouse-java.version>
57+
<clickhouse-java.version>0.9.2-SNAPSHOT</clickhouse-java.version>
5858
<hikaricp.version>4.0.3</hikaricp.version>
5959
<apache-httpclient.version>5.2.1</apache-httpclient.version>
6060

examples/r2dbc/clickhouse-r2dbc-spring-webflux-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<properties>
1515
<maven.compiler.source>1.8</maven.compiler.source>
1616
<maven.compiler.target>1.8</maven.compiler.target>
17-
<clickhouse-java.version>0.9.1-SNAPSHOT</clickhouse-java.version>
17+
<clickhouse-java.version>0.9.2-SNAPSHOT</clickhouse-java.version>
1818
<spring-boot-starter.version>2.7.18</spring-boot-starter.version>
1919
</properties>
2020

performance/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<properties>
1616
<apache.httpclient.version>5.3.1</apache.httpclient.version>
1717
<slf4j.version>2.0.17</slf4j.version>
18-
<ch.jdbc.revision>0.9.1-SNAPSHOT</ch.jdbc.revision>
18+
<ch.jdbc.revision>0.9.2-SNAPSHOT</ch.jdbc.revision>
1919
<jmh.version>1.37</jmh.version>
2020
<testcontainers.version>1.20.6</testcontainers.version>
2121

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
</ciManagement>
7070

7171
<properties>
72-
<revision>0.9.1-SNAPSHOT</revision>
72+
<revision>0.9.2-SNAPSHOT</revision>
7373
<project.current.year>2025</project.current.year>
7474
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7575
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

0 commit comments

Comments
 (0)