Toggle navigation
Home
int to org.neo4j.kernel.api.schema.IndexDescriptor
No. of Instances - 4
No. of Commits - 1
No. of Projects - {'neo4j'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Rename Variable
labelId
to
descriptor
labelId
to
descriptor
labelId
to
descriptor
propertyKeyId
to
index
Add or Remove Method invocation
propertyKey(propertyKeyId)
to
propertyText
labelId
to
descriptor.getLabelId()
records.add(Pair.of(CountsKeyFactory.indexStatisticsKey(labelId,propertyKeyId),size))
to
records.add(Pair.of(CountsKeyFactory.indexStatisticsKey(index),size))
records.add(Pair.of(CountsKeyFactory.indexSampleKey(labelId,propertyKeyId),size))
to
records.add(Pair.of(CountsKeyFactory.indexSampleKey(index),size))
Update Anonymous class
{ @Override public void visitNodeCount( int labelId, long count){ records.add(Pair.of(CountsKeyFactory.nodeKey(labelId),count)); } @Override public void visitRelationshipCount( int startLabelId, int typeId, int endLabelId, long count){ records.add(Pair.of(CountsKeyFactory.relationshipKey(startLabelId,typeId,endLabelId),count)); } @Override public void visitIndexStatistics( int labelId, int propertyKeyId, long updates, long size){ records.add(Pair.of(CountsKeyFactory.indexStatisticsKey(labelId,propertyKeyId),size)); } @Override public void visitIndexSample( int labelId, int propertyKeyId, long unique, long size){ records.add(Pair.of(CountsKeyFactory.indexSampleKey(labelId,propertyKeyId),size)); } }
to
{ @Override public void visitNodeCount( int labelId, long count){ records.add(Pair.of(CountsKeyFactory.nodeKey(labelId),count)); } @Override public void visitRelationshipCount( int startLabelId, int typeId, int endLabelId, long count){ records.add(Pair.of(CountsKeyFactory.relationshipKey(startLabelId,typeId,endLabelId),count)); } @Override public void visitIndexStatistics( IndexDescriptor index, long updates, long size){ records.add(Pair.of(CountsKeyFactory.indexStatisticsKey(index),size)); } @Override public void visitIndexSample( IndexDescriptor index, long unique, long size){ records.add(Pair.of(CountsKeyFactory.indexSampleKey(index),size)); } }