David E. Wheeler
David E. Wheeler
Hello. I just tried to build pgbitmap on an Ubuntu system. It failed while running as `root` because the `bin/find_pg_config` script tries to connect to the database and there is...
Modify `trunk.mk` to build JSON files required to build [OCI image manifests] and an [OCI image index], including new `make` variables `TITLE`, `DESCRIPTION`, `VENDOR`, `URL`, and `REPO_URL`. Add `push_trunk`, a...
`trunk.mk` copies a bunch of the `install` target from PGXS and modifies it to install into a organized according to the [proposed format]. The adds the `make` variables `DISTVERSION`, `LICENSE`,...
I used regex-info to build [an ECMAScript regex](https://regex101.com/r/d49AVj/2) to match Unix-style relative file paths. To prevent `..` from appearing at the start, I used a look-ahead assertion, `^(?![.]{2}\/)`. Alas, the...
## Your environment * Version of `jquery-validate`: Whatever's on https://jqueryvalidation.org/url-method/ * Browser name and version: Safari Version 17.6 (19618.3.11.11.5) ## Current behavior URL validation rejects valid URLs such as `rsync://master.pgxn.org/pgxn/`....
See, for example, [this build](/tembo-io/pg-jsonschema-boon/actions/runs/9879155965/job/27284755224), which outputs a couple of these: ``` warning: unused import: `std::error::Error` --> src/lib.rs:303:9 | 303 | use std::error::Error; | ^^^^^^^^^^^^^^^^^ | help: if this is...
Also ignore bitcode and darwin dylib files, and make the PostgreSQL version a valid SemVer in `META.json`. Note that there are some test failures on PostgreSQL 17, as in [this...
The link was broken and the license appears to be the MIT license, so switch to that. Looks like all existing releases on PGXN are using the [Business Source License...
Compile issues on Postgres 16 on Ubuntu 22; seems like a lot of warnings overwhelm it. Builds fine on macOS tho. Weird. Build logs attached. [pg16.txt](https://github.com/user-attachments/files/18203532/pg16.txt) [pg17.txt](https://github.com/user-attachments/files/18203533/pg17.txt)
I'm writing an application that uses [JSONPath](https://www.postgresql.org/docs/current/datatype-json.html#DATATYPE-JSONPATH) type, including arrays of JSONPaths. Looks like this type is not (yet) part of PGX, as I get this error: ``` failed to...