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

backend/pg: Stop using legacy helper/schema #34987

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Apr 12, 2024

  1. backend/pg: Stop using legacy helper/schema

    The legacy SDK is a very heavy dependency that this backend was only using
    tiny parts of.
    
    We'll now instead use our new "backendbase" package, which aims to provide
    a smaller set of helper functions that cover the main use-cases that the
    existing backends were relying on the SDK to meet, but with considerably
    less code and fewer layers of abstraction.
    apparentlymart committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    50d5f4e View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2024

  1. update test fixtures

    There were two failing ACC tests with this update. One from from a newer
    version of pg, which causes a different auth error message. The other is
    is directly related to this PR, which was checking for a specific schema
    error, which is now `invalid value for "skip_schema_creation"` when a
    non-bool argument is present.
    jbardin committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    549dcad View commit details
    Browse the repository at this point in the history