Bear Giles

Results 62 comments of Bear Giles

Quick update since I wasn't at a pull-request-ready stage but hope to have something in the next few days. I've refactored the java side extensively to match my new information...

In the most recent pull request the focus was on getting a working FDW - even if it meant all of the JNI was behind `#ifdef` blocks. The docker image...

I noted elsewhere that I borrowed heavily from the existing UDT but there's a huge difference since a UDT must expose its methods while a FDW should hide them. (It...

Notes - The base image is the official PostgreSQL docker image. It allows us to eliminate the usual initialization tasks while retaining the flexibility of that image. - The `ARG`...

The current contents of `/docker-entrypoint-initdb.d` are ### 0.1.pljava-vars.sh ```shell #!/bin/bash set -e # see https://tada.github.io/pljava/install/vmoptions.html # remove first two items if you wish attach java debugger psql -v ON_ERROR_STOP --username...

Finally most of the work is handled by ansible playbooks run as a github action but they can also be run locally. I'm sure this can be converted a conventional...

I've just created a pull request based on my prior local work that used the packages in the official postgresql repo. That made life a lot easier since it already...

Re: extending PGXNv2... This is an unusual situation since we have two options: - use a generic base image (postgres, alpine, fedora, etc.), add PXGN, then add and configure a...

I've mentioned github actions in the past. Here's what my existing project (which had to guess the pljava version) has: _.github/workflows/main.yml_ ```yml name: Docker PostgreSQL pl/java CI on: push: branches:...

I did a quick POC yesterday -- the third approach is definitely viable since it's easy to reduce the problem to "generate a set of CSV values that can be...