@Override public Long indexGetOwningUniquenessConstraintId(StatementState state, IndexDescriptor index) throws SchemaRuleNotFoundException { return schemaStorage .indexRule(index.getLabelId(), index.getPropertyKeyId()) .getOwningConstraint(); }
private long indexId(IndexDescriptor descriptor) throws IndexNotFoundKernelException { try { return schemaStorage .indexRule(descriptor.getLabelId(), descriptor.getPropertyKeyId()) .getId(); } catch (SchemaRuleNotFoundException e) { throw new IndexNotFoundKernelException(e.getMessage(), e); } }
@Override public long indexGetCommittedId(StatementState state, IndexDescriptor index) throws SchemaRuleNotFoundException { return schemaStorage.indexRule(index.getLabelId(), index.getPropertyKeyId()).getId(); }
@Override public IndexDescriptor indexesGetForLabelAndPropertyKey( StatementState state, final long labelId, final long propertyKey) throws SchemaRuleNotFoundException { return descriptor(schemaStorage.indexRule(labelId, propertyKey)); }