Skip to content

Release v0.9.0

Compare
Choose a tag to compare
@github-actions github-actions released this 12 Jun 03:24
· 351 commits to main since this release
27ccb8e

Important Changes

  • [repo] Artifacts clickhouse-jdbc:http, clickhouse-jdbc:shaded-all, clickhouse-jdbc:shaded are not published anymore. Use clickhouse-jdbc:all instead. It contains all required shaded libraries except org.slf4j:slf4j-api because it may not be shaded.
  • [repo] Artifacts jdbc-v2:all, jdbc-v2:http, jdbc-v2:shaded are not published anymore because jdbc-v2 is part of clickhouse-jdbc:all.

Bug Fixes

  • [jdbc-v2] Fixed parsing SQL with alias in FROM clause when alias name is a keyword (#2427)
  • [client-v2] Fixed the issue when parameters are not passed if timeout is set. (#2436, #2096)
  • [jdbc-v2] Fixed parser logging issue. Now parser uses same logger as the driver. (#2428)
  • [jdbc-v2] Fixed parsing CREATE USER statements. Now parser recognises it correctly. (#2398)
  • [jdbc-v2] Fixed parsing different CTEs statements. (#2431, #2391, #2443)
  • [jdbc-v2] Fixed parsing interval values. (#2429)
  • [repo] Fixed running unit/integration tests in the CI. (#2430)
  • [jdbc-v2] Fixed parsing parameters when function is in back quotes. (#2422)
  • [jdbc-v2] Fixed ResultSet#findColumn always returning 0. (#2375)

Misc

  • [client-v2] Move all default values to ClientConfigurationProperties enum. (#2269)

Docs

  • [client-v2] Updated documentation of the configuration parameters and how to set server settings and custom HTTP headers.