
io.questdb.cairo.TableFlagResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of questdb Show documentation
Show all versions of questdb Show documentation
QuestDB is high performance SQL time series database
The newest version!
package io.questdb.cairo;
import org.jetbrains.annotations.NotNull;
public interface TableFlagResolver {
default boolean isProtected(@NotNull CharSequence tableName) {
return false;
}
boolean isPublic(@NotNull CharSequence tableName);
boolean isSystem(@NotNull CharSequence tableName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy