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 several method that are used to get information about parameter types. We may not know parameters upfront but should do all best to return a correct...

bug
jdbc-v2

## Description There are some issues: - `getTableName(int column)` - Doesn't cover case with joins and unions - `isReadOnly(int column)` - Always return true. Need to detect calculated columns -...

bug
jdbc-v2

## Description Date/Time data types are most complex in terms of working with them. First - there are different classes in Java that handles time. Second - conversion between them...

bug
client-api-v2
jdbc-v2
area:general

## Description Next issues should be addressed: - `close()` - May be not a thread-safe - `getBytes(int columnIndex)` - No tests - `getMetaData()` - No tests Method that need to...

bug
jdbc-v2

## Description Next method should be implemented: - `abort(Executor executor)` - `getNetworkTimeout()`

bug
jdbc-v2

## Description These methods should be reviewed and improved for performance: - `createArrayOf(String typeName, Object[] elements)` - `createStruct(String typeName, Object[] attributes)`

bug

## Description There are some issues with the `ConnectionImpl` class that should be fixed: - enable all tests - `nativeSQL` is implemented not according to the spec. Related to escaping...

bug
jdbc-v2

### Description There are next problems with `Driver` implementation: - driver version should be load from a file. It should not be hardcoded - all tests should be enabled -...

bug
jdbc-v2

## Description I have encountered different problems retrieving data with new jdbc-v2 client. In particular, I encountered some issues when updating clickhouse-jdbc from release 0.7.2 (which still used jdbc-v1) to...

bug

## Description Bug with `Client#query(sql, params)` for a `DESCRIBE TABLE` query. ### Steps to reproduce See the unit test below. The parameter name is not substituted. ### Error Log or...

bug
client-api-v2