Postgresql – Inclusive intervals don't work as expected in jooq and postgres
When using the jooq-postgres-extension and inserting a row with a field value IntegerRange.integerRange(10, true, 20, true) in the query it is translated by cast('[10,20]' as int4range). It's interesting that if I run the query select cast('[10,20]' as int4range) I get…