tech.ydb.query.result.QueryInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-query Show documentation
Show all versions of ydb-sdk-query Show documentation
YDB QueryService client implementation
package tech.ydb.query.result;
/**
*
* @author Aleksandr Gorshenin
*/
public class QueryInfo {
private final QueryStats stats;
public QueryInfo(QueryStats stats) {
this.stats = stats;
}
public boolean hasStats() {
return stats != null;
}
public QueryStats getStats() {
return stats;
}
}