tech.ydb.table.settings.PrepareDataQuerySettings Maven / Gradle / Ivy
package tech.ydb.table.settings;
/**
* @author Sergey Polovko
*/
public class PrepareDataQuerySettings extends RequestSettings {
private boolean keepInQueryCache = false;
public boolean isKeepInQueryCache() {
return keepInQueryCache;
}
public PrepareDataQuerySettings keepInQueryCache() {
keepInQueryCache = true;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy