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

DBZ-2027 Upgrading Postgres JDBC driver to 42.2.12 #1452

Merged
merged 3 commits into from
Apr 29, 2020

Commits on Apr 29, 2020

  1. DBZ-2027 Upgrading Postgres JDBC driver to 42.2.12;

    The driver upgrade mitigates some issues with using this connector with
    Postgres on Azure. It comes with some behavioural changes, though:
    
    * column metadata for DECIMAL without scale is returned differently by
    the (see pgjdbc/pgjdbc#1767): while it used
    to be returned as 0, it's now returned as null. This should be
    transparent to DBZ consumers
    * snapshots for partitioned tables only export change events on the
    partition topics now due to pgjdbc/pgjdbc#1708;
    this has an impact on consumers, but I think it's more reasonable than
    exporting all change events twice, one partition table and main table
    topics
    gunnarmorling committed Apr 29, 2020
    Configuration menu
    Copy the full SHA
    ccac215 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4d9a62b View commit details
    Browse the repository at this point in the history
  3. DBZ-2027 Small speed-up of PG test execution;

    * Using Awaitility so we can use 100ms looping intervals; also it's more concise
    * Avoiding creation of one temporary connection
    gunnarmorling committed Apr 29, 2020
    Configuration menu
    Copy the full SHA
    304aadb View commit details
    Browse the repository at this point in the history