Creating a querydsl expression

We need to create a subquery like: VALUES 1,12,923,459, ..., 21263

in the advanced querydsl query, but I don't see a way to generate this.

We currently use a little hack with (select 10090) union (select 10091) union (select 10100) union but this has a big performance penalty (in postgresql).

+3


source to share





All Articles