tech.ydb.jdbc.query.ExplainedQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-jdbc-driver Show documentation
Show all versions of ydb-jdbc-driver Show documentation
JDBC Driver over YDB Java SDK
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;
}
}