Thanks to visit codestin.com
Credit goes to github.com

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: marcbowes/postgres
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.2
Choose a base ref
...
head repository: marcbowes/postgres
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.0.3
Choose a head ref
  • 7 commits
  • 7 files changed
  • 1 contributor

Commits on Jun 25, 2025

  1. Exclude libss/crypto from libpq

    On linux, we have the following dep chain:
    
    aws-dsql-auth -> aws-c-http -> aws-c-io -> aws-lc
    
    We only use aws-c-http for request signing, but we cannot make aws-c-io
    conditionally required. aws-c-io only works with aws-lc on linux, which
    means we land up in a situation where we have two libcryptos (postgres
    wants openssl).
    
    Our overall solution is to make fe-dsql-auth.o a self-contained
    file (hiding the aws-dsql-auth dep chain) and explicitly exclude the
    libs we don't want.
    marcbowes committed Jun 25, 2025
    Configuration menu
    Copy the full SHA
    060acad View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2025

  1. pbbench support for dsql

    Doesn't handle occ yet
    marcbowes committed Jun 26, 2025
    Configuration menu
    Copy the full SHA
    2a8eaec View commit details
    Browse the repository at this point in the history
  2. pkg pgbench

    marcbowes committed Jun 26, 2025
    Configuration menu
    Copy the full SHA
    6e4bdb3 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2025

  1. Revert the tls filter

    It doesn't work because we end up with a few unnamed syms.
    marcbowes committed Jun 27, 2025
    Configuration menu
    Copy the full SHA
    0187de5 View commit details
    Browse the repository at this point in the history
  2. Bump aws-dsql-auth

    marcbowes committed Jun 27, 2025
    Configuration menu
    Copy the full SHA
    d61f60f View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2025

  1. Configuration menu
    Copy the full SHA
    b501e2a View commit details
    Browse the repository at this point in the history
  2. Add logging and imds support

    This commit wires up the aws-c-common logging infra. You can log to
    std{out,err} or a file, and set the level through env vars. The readme
    has examples.
    
    With this logging I realized that imds wasn't working due to a missing
    http client. That's been fixed now.
    marcbowes committed Jun 28, 2025
    Configuration menu
    Copy the full SHA
    560789d View commit details
    Browse the repository at this point in the history
Loading