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

tech.ydb.query.result.QueryInfo Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy