clickhouse-java icon indicating copy to clipboard operation
clickhouse-java copied to clipboard

Java client and JDBC driver for ClickHouse

Results 485 clickhouse-java issues
Sort by recently updated
recently updated
newest added

## Description There are some issues: - `executeQuery()` - Doesn't check if all parameters are set - `executeUpdate()` - Doesn't check if all parameters are set - `setBytes(int parameterIndex, byte...

bug
jdbc-v2

org.lz4:lz4-java (1.8.0) has been unmaintained for years and triggers JDK 17 + startup warnings: > WARNING: A restricted method in java.lang.System has been called > WARNING: java.lang.System::loadLibrary has been called...

enhancement
area:network

### Use case Currently, the query parameters are always sent as URI params, which can be problematic when there are numerous params (or long params) ### Describe the solution you'd...

enhancement
client-api-v2

### Use case SNI is a TLS extension allowing client to specify target host. This is also used by a load balancer to route request to a correct host. SNI...

enhancement
client-api-v2
jdbc-v2

I need an example how to use ClientV2 and ExternalTable For example I have a simple query `select * from numbers(10) where number in ExternalTable;` ```java final Client client =...

question
client-api-v2
v2-feedback

## Description The API for query parameters could be more user-friendly for `List`, and not require to manually surround every string element with a single quote. ### Steps to reproduce...

bug
client-api-v2

### Description There is a PR https://github.com/ClickHouse/clickhouse-java/pull/2382 It describes the problem

enhancement
jdbc-v2

I am trying to connect to a clickhouse cloud instance via the JDBC driver. I am using `` `` ### Code example ```java private static Connection getConnection(String url, Properties properties)...

bug
dependencies
investigating

### Describe the bug After updating jdbc driver there is an error while trying to SELECT duplicated data. ### Steps to reproduce 1. "SELECT 'value1', 'value1'" 2. Observe error ###...

bug
client-api-v2

## Description v1 allowed for ssl connections with sslMode=none, v2 fails ### Steps to reproduce ##### environment ssl enabled clickhouse with: ``` mkdir clickhouse-ssl cd clickhouse-ssl # Generate private key...

bug
client-api-v2
area:network