Chapman Flack

Results 116 comments of Chapman Flack

In the source code you attached in an earlier comment, `Point.parse` contains this line: > ```java > return new Point(Double.parseDouble(matcher.group(1)), > Double.parseDouble(matcher.group(3))); > ``` That looks correct as far as...

It may be helpful if you can post the output of the `pg_config` command (the same one found on the search path by the Maven build). One of the paths...

If `pg_config` reports version 15.7, you should definitely have [`access/htup_details.h`][htup_details.h] and [`utils/timeout.h`][timeout.h]. It appears that somehow the PostgreSQL development package installed on your system may be incomplete, or somehow does...

Does the repository you are installing from have a package `postgresql15-server-devel`? If it does not, the development files for both client and server may have been combined into a package...

I assume that the `yum install postgresql15-devel` shown in your 1 July comment resolved the issue. Please feel free to reopen with additional information if it did not.

PL/Java 1.6.8 is released after testing with PostgreSQL 17. @devrimgunduz, I am sorry we didn't connect at pgconf.dev to discuss the RPM packaging. This release has made some updates in...

Goodness, that's a lot to digest, and it sounds frustrating. The best thing about it, from your description, is that it seems to be deterministic and repeatable, you can count...

PL/Java's classloader is failing at that point because an earlier PostgreSQL error has not been fully handled, leaving PostgreSQL internals in an unusable state until a rollback of the transaction...

If you are running 1.6.8, good places to set a debugger breakpoint will be: With a C debugger such as `gdb`, use a breakpoint on [`Exception.c` line 174][e174], and use...

Hi, Do you think you will have time to get any stack traces for me to look at?