David E. Wheeler

Results 436 comments of David E. Wheeler

Looks like I documented it to work with either `relation` or `sync` in ff1a3528.

Moved to Milestone 5.1.

I didn't realize `apt.postgresql.org.sh` would install the Debian-packaged pg_config or libpq. The host does have libpq and pg_config in `/usr/include/postgresql/9.2`; would it work if the PATH included `/usr/include/postgresql/9.2/bin`?

@df7cb can you comment on this? The `pg-start` script uses ``` apt.postgresql.org.sh -i -v 9.2 ``` to instal the version. Is there a way for that script to also install...

Okay. A little surprised that [`apt.postgresql.org.sh`](https://salsa.debian.org/postgresql/postgresql-common/-/raw/master/pgdg/apt.postgresql.org.sh) doesn't install them; maybe it could? I believe it sets up the apt repo, but maybe not, since I ran `apt install libq{5,-dev}=9.2.*` and...

If the expectation is that setting as an environment variable will do the trick, I tried it with `pg_config` and it made no difference: ``` # pg_config --includedir /usr/include/postgresql #...

Setting up the new apt source also does not work; it cannot find the specified packages to install: ``` $ echo deb http://apt.postgresql.org/pub/repos/apt/ buster-pgdg-testing main 9.2 >> /etc/apt/sources.list $ cat...

And finally, there is only one copy of `libpq-fe.h` on the system: ``` find / -name libpq-fe.h /usr/include/postgresql/libpq-fe.h ``` That's the default latest version that @ilmari mentioned; to his point,...

Patch: ``` diff --- a/go/integration/hcvault/hcvault_aead.go +++ b/go/integration/hcvault/hcvault_aead.go @@ -115,7 +115,7 @@ func (a *vaultAEAD) getDecryptionPath(keyURL string) (string, error) { return strings.Join(parts, "/"), nil } -var vaultKeyRegex = regexp.MustCompile(fmt.Sprintf("^%s/*([a-zA-Z0-9.:]+)/(.*)$", vaultPrefix)) +var...