com.yandex.ydb.table.settings.PrepareDataQuerySettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
JDBC client implementation over Table client, single jar
The newest version!
package com.yandex.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;
}
}