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 32afca1 commit 2105292Copy full SHA for 2105292
spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/query/QueryUtils.java
@@ -92,7 +92,7 @@ public abstract class QueryUtils {
92
93
public static final String COUNT_QUERY_STRING = "select count(%s) from %s x";
94
public static final String DELETE_ALL_QUERY_STRING = "delete from %s x";
95
- 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";
96
97
// Used Regex/Unicode categories (see https://www.unicode.org/reports/tr18/#General_Category_Property):
98
// Z Separator
0 commit comments