Skip to content

Bump com.clickhouse:clickhouse-jdbc from 0.8.1 to 0.8.6 #1274

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 19, 2025

Bumps com.clickhouse:clickhouse-jdbc from 0.8.1 to 0.8.6.

Release notes

Sourced from com.clickhouse:clickhouse-jdbc's releases.

Release v0.8.6

Improvements

  • [jdbc-v2] Now using Antlr4 to parse SQL statements to get meta information about it. Invalid SQL still possible to execute if logic able to get all required information. (ClickHouse/clickhouse-java#2351)
  • [jdbc-v2] Now possible to use RowBinaryWriter if enabled by property com.clickhouse.jdbc.internal.DriverProperties.BETA_ROW_BINARY_WRITER. This works well for batches. Single statements may get no benefits. (ClickHouse/clickhouse-java#2316)

Bug Fixes

Release v0.8.5

Improvements

Bug Fixes

  • [client-v2] Fixed creating TableSchema for materialized views. It resolves issues with POJO serde. (ClickHouse/clickhouse-java#2118, ClickHouse/clickhouse-java#2025)
  • [client-v2, jdbc-v2] Fixed handling Nullable inside SimpleAggregateFunction columns. (ClickHouse/clickhouse-java#2110)
  • [jdbc-v2] Fixed problem with server info request. It is fetched now when timezone of the server is set. (ClickHouse/clickhouse-java#2191)
  • [jdbc-v2] Fixed null response for getIndexInfo(). Empty Result Set is returned. (ClickHouse/clickhouse-java#2286)
  • [jdbc-v2] Fixed wrong false response in DataBaseMetadata.supportsBatchUpdates(). Returns true now. Please note that no update is supported for result sets.
  • [jdbc-v2] Fixed handling UUID data type in PreparedStatement. (ClickHouse/clickhouse-java#2327)
  • [jdbc-v2] Fixed unsigned integer type matching. UInt8, UInt16, UInt32, UInt64, UInt128, UInt256 are presented as short, int, long, BigInteger, BigInteger, BigInteger correspondingly. SQLType for them is OTHER because JDBC (as well as Java) doesn't provide good mapping for unsigned integers. (ClickHouse/clickhouse-java#2333)
  • [jdbc-v2] Disallowed to call method from Statement interface on PreparedStatement instance according to the JDBC spec. (ClickHouse/clickhouse-java#2339)

Release v0.8.4

Examples

Bug Fixes

  • [jdbc-v2] Added implementation of ResultSetMetaData.getColumnClassName() to return information about class name of the value stored in a result. (ClickHouse/clickhouse-java#2112)
  • [client-v2] Fixed NPE when Client.queryAll used with INSERT statement because internally columns variable was accessed and was null. (ClickHouse/clickhouse-java#2150)
  • [jdbc-v2] Fixed NPE when ssl=true was passed via an connection URL. (ClickHouse/clickhouse-java#2206)
  • [jdbc-v2] Fixed sending correct driver version. Problem occurs because context classloader had no access to

... (truncated)

Changelog

Sourced from com.clickhouse:clickhouse-jdbc's changelog.

0.8.6

Improvements

  • [jdbc-v2] Now using Antlr4 to parse SQL statements to get meta information about it. Invalid SQL still possible to execute if logic able to get all required information. (ClickHouse/clickhouse-java#2351)
  • [jdbc-v2] Now possible to use RowBinaryWriter if enabled by property com.clickhouse.jdbc.internal.DriverProperties.BETA_ROW_BINARY_WRITER. This works well for batches. Single statements may get no benefits. (ClickHouse/clickhouse-java#2316)

Bug Fixes

0.8.5

Improvements

Bug Fixes

  • [client-v2] Fixed creating TableSchema for materialized views. It resolves issues with POJO serde. (ClickHouse/clickhouse-java#2118, ClickHouse/clickhouse-java#2025)
  • [client-v2, jdbc-v2] Fixed handling Nullable inside SimpleAggregateFunction columns. (ClickHouse/clickhouse-java#2110)
  • [jdbc-v2] Fixed problem with server info request. It is fetched now when timezone of the server is set. (ClickHouse/clickhouse-java#2191)
  • [jdbc-v2] Fixed null response for getIndexInfo(). Empty Result Set is returned. (ClickHouse/clickhouse-java#2286)
  • [jdbc-v2] Fixed wrong false response in DataBaseMetadata.supportsBatchUpdates(). Returns true now. Please note that no update is supported for result sets.
  • [jdbc-v2] Fixed handling UUID data type in PreparedStatement. (ClickHouse/clickhouse-java#2327)
  • [jdbc-v2] Fixed unsigned integer type matching. UInt8, UInt16, UInt32, UInt64, UInt128, UInt256 are presented as short, int, long, BigInteger, BigInteger, BigInteger correspondingly. SQLType for them is OTHER because JDBC (as well as Java) doesn't provide good mapping for unsigned integers. (ClickHouse/clickhouse-java#2333)
  • [jdbc-v2] Disallowed to call method from Statement interface on PreparedStatement instance according to the JDBC spec. (ClickHouse/clickhouse-java#2339)

0.8.4

Examples

Bug Fixes

  • [jdbc-v2] Added implementation of ResultSetMetaData.getColumnClassName() to return information about class name of the value stored in a result. (ClickHouse/clickhouse-java#2112)
  • [client-v2] Fixed NPE when Client.queryAll used with INSERT statement because internally columns variable was accessed and was null. (ClickHouse/clickhouse-java#2150)

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [com.clickhouse:clickhouse-jdbc](https://github.com/ClickHouse/clickhouse-java) from 0.8.1 to 0.8.6.
- [Release notes](https://github.com/ClickHouse/clickhouse-java/releases)
- [Changelog](https://github.com/ClickHouse/clickhouse-java/blob/main/CHANGELOG.md)
- [Commits](ClickHouse/clickhouse-java@v0.8.1...v0.8.6)

---
updated-dependencies:
- dependency-name: com.clickhouse:clickhouse-jdbc
  dependency-version: 0.8.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels May 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants