Skip to content

Commit 47747d1

Browse files
committed
prepare 0.2.5
1 parent 15b4043 commit 47747d1

File tree

7 files changed

+25
-801
lines changed

7 files changed

+25
-801
lines changed

CHANGELOG

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.2.5
2+
* bump dependencies and include lz4 in shaded jar
3+
* new API: ClickHouseRowBinaryStream.writeUInt64Array(UnsignedLong[])
4+
* support column comments
5+
* support explain queries
6+
* fix ResultSet.findColumn(String) issue
7+
* fix the issue of not being able to use NULL constant in PreparedStatement
8+
* fix toLowerCase issue for Turkish
19
0.2.4
210
* fix FORMAT clause append for queries, ending with comment
311
0.2.3

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[![clickhouse-jdbc](https://maven-badges.herokuapp.com/maven-central/ru.yandex.clickhouse/clickhouse-jdbc/badge.svg)](https://maven-badges.herokuapp.com/maven-central/ru.yandex.clickhouse/clickhouse-jdbc) [![Build Status](https://travis-ci.org/ClickHouse/clickhouse-jdbc.svg?branch=master)](https://travis-ci.org/ClickHouse/clickhouse-jdbc)
21
ClickHouse JDBC driver
32
===============
3+
[![clickhouse-jdbc](https://maven-badges.herokuapp.com/maven-central/ru.yandex.clickhouse/clickhouse-jdbc/badge.svg)](https://maven-badges.herokuapp.com/maven-central/ru.yandex.clickhouse/clickhouse-jdbc) ![Build Status(https://github.com/ClickHouse/clickhouse-jdbc/workflows/Build/badge.svg)](https://github.com/ClickHouse/clickhouse-jdbc/workflows/Build/badge.svg)
44

55
This is a basic and restricted implementation of jdbc driver for ClickHouse.
66
It has support of a minimal subset of features to be usable.
@@ -10,7 +10,7 @@ It has support of a minimal subset of features to be usable.
1010
<dependency>
1111
<groupId>ru.yandex.clickhouse</groupId>
1212
<artifactId>clickhouse-jdbc</artifactId>
13-
<version>0.2.4</version>
13+
<version>0.2.5</version>
1414
</dependency>
1515
```
1616

@@ -49,7 +49,7 @@ sth
4949
.addDbParam(ClickHouseQueryParam.MAX_PARALLEL_REPLICAS, 2)
5050
.send();
5151
```
52-
#### Send data in binary formatd with custom user callback
52+
#### Send data in binary formated with custom user callback
5353
```java
5454
import ru.yandex.clickhouse.ClickHouseStatement;
5555
ClickHouseStatement sth = connection.createStatement();
@@ -73,4 +73,4 @@ To build a jar with dependencies use
7373
`mvn package assembly:single -DskipTests=true`
7474

7575
### Build requirements
76-
In order to build the jdbc client one need to have jdk 1.6 or higher.
76+
In order to build the jdbc client one need to have jdk 1.7 or higher.

pom.xml

+9-64
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,17 @@
5252
</developers>
5353

5454
<properties>
55-
<revision>0.2.5-SNAPSHOT</revision>
55+
<revision>0.2.5</revision>
5656
<slf4j.version>1.7.30</slf4j.version>
5757
<project.current.year>2021</project.current.year>
5858
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5959
<httpclient.version>4.5.13</httpclient.version>
6060
<lz4.version>1.3.0</lz4.version>
61-
<jackson.version>2.9.10</jackson.version>
62-
<guava.version>19.0</guava.version>
61+
<jackson-core.version>2.9.10</jackson-core.version>
62+
<jackson-databind.version>2.9.10.8</jackson-databind.version>
63+
<guava.version>29.0-jre</guava.version>
6364
<jaxb.version>2.3.1</jaxb.version>
64-
<antlr4.version>4.9.1</antlr4.version>
65+
<jdk.version>1.7</jdk.version>
6566
<testcontainers.version>1.15.1</testcontainers.version>
6667
<testng.version>6.14.3</testng.version>
6768
<mockito.version>1.10.19</mockito.version>
@@ -104,12 +105,12 @@
104105
<dependency>
105106
<groupId>com.fasterxml.jackson.core</groupId>
106107
<artifactId>jackson-core</artifactId>
107-
<version>${jackson.version}</version>
108+
<version>${jackson-core.version}</version>
108109
</dependency>
109110
<dependency>
110111
<groupId>com.fasterxml.jackson.core</groupId>
111112
<artifactId>jackson-databind</artifactId>
112-
<version>${jackson.version}</version>
113+
<version>${jackson-databind.version}</version>
113114
</dependency>
114115
<dependency>
115116
<groupId>com.google.guava</groupId>
@@ -127,12 +128,6 @@
127128
<version>${jaxb.version}</version>
128129
</dependency>
129130

130-
<dependency>
131-
<groupId>org.antlr</groupId>
132-
<artifactId>antlr4-runtime</artifactId>
133-
<version>${antlr4.version}</version>
134-
<scope>test</scope>
135-
</dependency>
136131
<dependency>
137132
<groupId>org.slf4j</groupId>
138133
<artifactId>slf4j-log4j12</artifactId>
@@ -255,56 +250,6 @@
255250

256251
<build>
257252
<plugins>
258-
<plugin>
259-
<groupId>org.antlr</groupId>
260-
<artifactId>antlr4-maven-plugin</artifactId>
261-
<version>${antlr4.version}</version>
262-
<configuration>
263-
<arguments>
264-
<argument>-visitor</argument>
265-
</arguments>
266-
</configuration>
267-
<executions>
268-
<!-- antlr4 is overkill but it can be leveraged to test our custom sql parser
269-
<execution>
270-
<id>antlr-4</id>
271-
<goals>
272-
<goal>antlr4</goal>
273-
</goals>
274-
</execution>
275-
-->
276-
<execution>
277-
<id>antlr-test</id>
278-
<configuration>
279-
<sourceDirectory>${basedir}/src/test/antlr4</sourceDirectory>
280-
<outputDirectory>${basedir}/target/generated-test-sources-antlr/antlr4</outputDirectory>
281-
</configuration>
282-
<phase>generate-test-sources</phase>
283-
<goals>
284-
<goal>antlr4</goal>
285-
</goals>
286-
</execution>
287-
</executions>
288-
</plugin>
289-
<plugin>
290-
<groupId>org.codehaus.mojo</groupId>
291-
<artifactId>build-helper-maven-plugin</artifactId>
292-
<version>${helper-plugin.version}</version>
293-
<executions>
294-
<execution>
295-
<id>add-test-sources</id>
296-
<phase>generate-test-sources</phase>
297-
<goals>
298-
<goal>add-test-source</goal>
299-
</goals>
300-
<configuration>
301-
<sources>
302-
<source>${basedir}/target/generated-test-sources-antlr/antlr4</source>
303-
</sources>
304-
</configuration>
305-
</execution>
306-
</executions>
307-
</plugin>
308253
<plugin>
309254
<groupId>org.apache.maven.plugins</groupId>
310255
<artifactId>maven-failsafe-plugin</artifactId>
@@ -342,8 +287,8 @@
342287
<artifactId>maven-compiler-plugin</artifactId>
343288
<version>${compiler-plugin.version}</version>
344289
<configuration>
345-
<source>7</source>
346-
<target>7</target>
290+
<source>${jdk.version}</source>
291+
<target>${jdk.version}</target>
347292
<showDeprecation>true</showDeprecation>
348293
<showWarnings>true</showWarnings>
349294
<fork>true</fork>

src/main/java/ru/yandex/clickhouse/settings/ClickHouseQueryParam.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33

44
import java.sql.DriverPropertyInfo;
5+
import java.util.Locale;
56
import java.util.Properties;
67

78
public enum ClickHouseQueryParam implements DriverPropertyCreator {
@@ -284,7 +285,7 @@ public String getDescription() {
284285

285286
@Override
286287
public String toString() {
287-
return name().toLowerCase();
288+
return name().toLowerCase(Locale.ROOT);
288289
}
289290

290291
@Override

0 commit comments

Comments
 (0)