You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Alexey Kuznetsov (Jira)" <ji...@apache.org> on 2020/06/01 16:13:00 UTC

[jira] [Created] (IGNITE-13104) Spring data 2.0 IgniteRepositoryImpl#deleteAllById contains wrong code

Alexey Kuznetsov created IGNITE-13104:
-----------------------------------------

             Summary: Spring data 2.0 IgniteRepositoryImpl#deleteAllById contains wrong code
                 Key: IGNITE-13104
                 URL: https://issues.apache.org/jira/browse/IGNITE-13104
             Project: Ignite
          Issue Type: Improvement
          Components: springdata
    Affects Versions: 2.8.1
            Reporter: Alexey Kuznetsov
            Assignee: Alexey Kuznetsov
             Fix For: 2.9


{code}
    /** {@inheritDoc} */
    @Override public void deleteAllById(Iterable<ID> ids) {
        if (ids instanceof Set)
            cache.removeAll((Set<ID>)ids);

        if (ids instanceof Collection)
            cache.removeAll(new HashSet<>((Collection<ID>)ids));

        TreeSet<ID> keys = new TreeSet<>();

        for (ID id : ids)
            keys.add(id);

        cache.removeAll(keys);
    }
{code}

As you can see cache.removeAll may be executed THREE times in some situations.
Also this method can throw ClassCast exception if ids collection contains objects that are not implement Comparable interface.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)