All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.ydb.table.query.ExplainDataQueryResult Maven / Gradle / Ivy

package tech.ydb.table.query;

import tech.ydb.proto.table.YdbTable;

/**
 * @author Sergey Polovko
 */
public class ExplainDataQueryResult {

    private final String queryAst;
    private final String queryPlan;

    public ExplainDataQueryResult(YdbTable.ExplainQueryResult query) {
        this.queryAst = query.getQueryAst();
        this.queryPlan = query.getQueryPlan();
    }

    public String getQueryAst() {
        return queryAst;
    }

    public String getQueryPlan() {
        return queryPlan;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy