jOOQ icon indicating copy to clipboard operation
jOOQ copied to clipboard

jOOQ is the best way to write SQL in Java

Results 866 jOOQ issues
Sort by recently updated
recently updated
newest added

### Overview In my project I do something like this: ```java dslContext.select(val(null, Boolean.class)) .from(DSL.table("TEST_TABLE")) .unionAll(dslContext .select(DSL.field("NUMBER_1_0_COLUMN")) .from("TEST_TABLE")) .fetch() ``` - but I get ORA-01790 error. SQL-query provided by Select::toString can...

T: Defect
C: Functionality
C: DB: Oracle
P: Medium
E: Professional Edition
E: Enterprise Edition

There are numerous issues where compatibility among RDBMS is hard, in case a standard data type needs to be encoded in other RDBMS. This mostly evolves around: - [ ]...

T: Enhancement
C: Functionality
P: Medium
E: All Editions

The problem can be illustrated as follows: ```sql create function f(i int) returns int as $$ begin return i; end $$ language plpgsql; create function f(i bigint) returns int as...

T: Defect
C: Code Generation
P: Medium
E: All Editions

There are some methods in `AbstractRecord`, such as `AbstractRecord.get(int, Converter)`, which do not pass a `ConverterContext` to a `ContextConverter`, and as such, may produce unexpected results. Here's a correct implementation:...

T: Defect
C: Functionality
P: Medium
E: All Editions

The current `RecordMapperProvider` SPI doesn't pass the `Configuration` parameter, which is useful for caching. If an implementation falls back to returning the `DefaultRecordMapper`, the latter currently cannot be instantiated with...

T: Enhancement
C: Functionality
P: Medium
E: All Editions

There's a potentially expensive `String[]` allocation in `AbstractName::equals`: ```java @Override public boolean equals(Object that) { if (this == that) return true; // [#1626] [#11126] NameImpl equality can be decided without...

T: Defect
P: Medium
E: All Editions
C: Performance