Search in sources :

Example 1 with OlapPropertyKeyRemoveJob

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);
}
Also used : OlapPropertyKeyRemoveJob(com.baidu.hugegraph.job.schema.OlapPropertyKeyRemoveJob) SchemaJob(com.baidu.hugegraph.job.schema.SchemaJob)

Aggregations

OlapPropertyKeyRemoveJob (com.baidu.hugegraph.job.schema.OlapPropertyKeyRemoveJob)1 SchemaJob (com.baidu.hugegraph.job.schema.SchemaJob)1