Skip to content

Tag: postgresql

process.waitFor() not returning

I would like to migrate data from a Postgres SQL script. I am using the code below. waitFor is not returning anything, it just waits forever. Note: My test.sql has many queries so it will display many log entries. Question: How to solve this problem? If this relates to the buffer memory, how do I clear the bu…

Is there a way to query ltrees in JOOQ?

Is there any sort of extension that would allow me to use Postgres ltrees in JOOQ without having to use raw SQL? Any way to make one myself maybe? Answer Starting from jOOQ 3.17: With #13188, jOOQ has added native support for LTREE types (and similar) via the jooq-postgres-extensions module: Just add that mod…