Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ikalnytskyi/action-setup-postgres
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2
Choose a base ref
...
head repository: ikalnytskyi/action-setup-postgres
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jul 2, 2022

  1. Use encoding="UTF-8" and locale="en_US.UTF-8"

    If not explicitly specified, PostgreSQL infers both locale and encoding
    from the locale settings upon database initialization. Speaking about
    GitHub runners, they all have different locale settings. For instance,
    Windows runner uses `CP1252` encoding which renders the database unable
    to deal with non-latin characters.
    
    This patch enforces encoding="UTF-8" and locale="en_US.UTF-8" on all
    supported platforms in order to ensure that the database behaves the
    same way in certain edge cases.
    
    Fixes #3
    ikalnytskyi committed Jul 2, 2022
    Configuration menu
    Copy the full SHA
    9e09d9b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4 from ikalnytskyi/encoding

    Use encoding="UTF-8" and locale="en_US.UTF-8"
    ikalnytskyi authored Jul 2, 2022
    Configuration menu
    Copy the full SHA
    e5b7793 View commit details
    Browse the repository at this point in the history
Loading