Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Disable bytes usage with postgres #6186

Merged
merged 7 commits into from
Oct 10, 2019
Merged

Commits on Oct 8, 2019

  1. Disable bytes usage with postgres

    More often than not passing bytes to `txn.execute` is a bug (where we
    meant to pass a string) that just happens to work if `BYTEA_OUTPUT` is
    set to `ESCAPE`. However, this is a bit of a footgun so we want to
    instead error when this happens, and force using `bytearray` if we
    actually want to use bytes.
    erikjohnston committed Oct 8, 2019
    Configuration menu
    Copy the full SHA
    1d38583 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2019

  1. Configuration menu
    Copy the full SHA
    7f18b3d View commit details
    Browse the repository at this point in the history
  2. Newsfile

    erikjohnston committed Oct 9, 2019
    Configuration menu
    Copy the full SHA
    c3b34dc View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2019

  1. Configuration menu
    Copy the full SHA
    91f43dc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8bc529c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ca3e01e View commit details
    Browse the repository at this point in the history
  4. Fix postgres unit tests

    erikjohnston committed Oct 10, 2019
    Configuration menu
    Copy the full SHA
    bc24462 View commit details
    Browse the repository at this point in the history