Description
The SpecificationBuilder#InPredicate utilizes the function array_position from postgres. We should replace this method to support others.
|
Expression<?> pos = builder.function( |
|
"array_position", |
|
String.class, |
|
expression, |
|
builder.literal(value) |
|
); |
Description
The SpecificationBuilder#InPredicate utilizes the function
array_positionfrom postgres. We should replace this method to support others.HawAPI/src/main/java/com/lucasjosino/hawapi/repositories/specification/SpecificationBuilder.java
Lines 138 to 143 in b1ec687