Skip to content
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

Bump org.postgresql:postgresql from 42.6.0 to 42.7.1 in /by-language/java-qa #191

Commits on Dec 11, 2023

  1. Bump org.postgresql:postgresql in /by-language/java-qa

    Bumps [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) from 42.6.0 to 42.7.1.
    - [Release notes](https://github.com/pgjdbc/pgjdbc/releases)
    - [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md)
    - [Commits](pgjdbc/pgjdbc@REL42.6.0...REL42.7.1)
    
    ---
    updated-dependencies:
    - dependency-name: org.postgresql:postgresql
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    9ebd54f View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. pgjdbc: Skip test about getDefaultTransactionIsolation()

    Starting with version 42.7.0, the driver issues a query statement like
    
      SELECT *
      FROM pg_catalog.pg_settings
      WHERE name=default_transaction_isolation
    
    This is not supported by CrateDB.
    amotl committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    4cb99af View commit details
    Browse the repository at this point in the history
  2. pgjdbc: Adjust for new result from conn.getMetaData().getCatalogs()

    As before there was 
    
    It looks actually correct now in 42.7, as `doc` is the schema, but not
    the catalog. The SQL statement returns `crate`, not `doc`.
    
      SELECT DISTINCT table_catalog FROM information_schema.tables 
    
    On the upstream release notes:
    
      feat: return all catalogs for getCatalogs metadata query closes
      ISSUE #2949 PR #2953
    
      -- https://jdbc.postgresql.org/changelogs/2023-11-20-42.7.0-release/
    amotl committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    5de1d9c View commit details
    Browse the repository at this point in the history