use of com.baidu.hugegraph.job.schema.OlapPropertyKeyRemoveJob in project incubator-hugegraph by apache.
the class SchemaTransaction method removeOlapPk.
public Id removeOlapPk(PropertyKey propertyKey) {
LOG.debug("SchemaTransaction remove olap property key {} with id '{}'", propertyKey.name(), propertyKey.id());
SchemaJob callable = new OlapPropertyKeyRemoveJob();
return asyncRun(this.graph(), propertyKey, callable);
}
Aggregations