[jOOQ/jOOQ#16938] Work around SQL Server's buggy UNION with ORDER BY ..

OFFSET .. FETCH implementation in derived tables
This commit is contained in:
Lukas Eder 2024-07-09 17:18:47 +02:00
parent 109e06203d
commit 81f9c081d0

View File

@ -3616,6 +3616,10 @@ final class SelectQueryImpl<R extends Record> extends AbstractResultQuery<R> imp
|| WRAP_EXP_BODY_IN_DERIVED_TABLE_ORDER_BY.contains(ctx.dialect()) && !getOrderBy().isEmpty()
);
}