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

tech.ydb.jdbc.query.ExplainedQuery Maven / Gradle / Ivy

There is a newer version: 2.3.5
Show newest version
package tech.ydb.jdbc.query;

/**
 *
 * @author Aleksandr Gorshenin
 */
public class ExplainedQuery {
    private final String ast;
    private final String plan;

    public ExplainedQuery(String ast, String plan) {
        this.ast = ast;
        this.plan = plan;
    }

    public String getAst() {
        return this.ast;
    }

    public String getPlan() {
        return this.plan;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy