@Override public Long indexGetOwningUniquenessConstraintId(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(IndexDescriptor index, SchemaStorage.IndexRuleKind kind) throws SchemaRuleNotFoundException { return schemaStorage.indexRule(index.getLabelId(), index.getPropertyKeyId()).getId(); }
@Override public IndexDescriptor indexesGetForLabelAndPropertyKey(int labelId, int propertyKey) throws SchemaRuleNotFoundException { return descriptor(schemaStorage.indexRule(labelId, propertyKey)); }