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

com.yandex.ydb.table.settings.PrepareDataQuerySettings Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy