org.neo4j.kernel.api.index.IndexEntryUpdate to org.neo4j.kernel.api.index.CompositeRandomizedIndexAccessorCompatibility.ValueAndId
No. of Instances - 3
No. of Commits - 1
No. of Projects - {'neo4j'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
- updates to updates.stream().map(u -> new ValueAndId(ValueTuple.of(u.values()),u.getEntityId())).collect(toList())
- sortedValues.subSet(add(0,descriptor.schema(),from),fromInclusive,add(0,descriptor.schema(),to),toInclusive).stream().map(IndexEntryUpdate::getEntityId).sorted(Long::compare) to sortedValues.subSet(new ValueAndId(from,0L),fromInclusive,new ValueAndId(to,0L),toInclusive).stream().map(v -> v.id).sorted(Long::compare)
- updates to updates.stream().map(u -> new ValueAndId(u.values()[0],u.getEntityId())).collect(Collectors.toList())