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