We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SimpleJpaRepository.deleteAllByIdInBatch(…)
1 parent 6bf3610 commit d73a925Copy full SHA for d73a925
spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/query/QueryUtils.java
@@ -94,7 +94,7 @@ public abstract class QueryUtils {
94
95
public static final String COUNT_QUERY_STRING = "select count(%s) from %s x";
96
public static final String DELETE_ALL_QUERY_STRING = "delete from %s x";
97
- public static final String DELETE_ALL_QUERY_BY_ID_STRING = "delete from %s x where %s in :ids";
+ public static final String DELETE_ALL_QUERY_BY_ID_STRING = "delete from %s x where x.%s in :ids";
98
99
// Used Regex/Unicode categories (see https://www.unicode.org/reports/tr18/#General_Category_Property):
100
// Z Separator
0 commit comments