/
NikolayIvkin
/
sqlancer2
Обзор
Документация
Войти
/
NikolayIvkin
/
sqlancer2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/sqlancer/OracleFactory.java
18 строк
478 B
Patrick
Rework Connection to DB to support non-SQL connections
23 ноя 2020, 03:28
23 ноя 2020, 03:28
97b8850
Код
Авторство
О чём код?
package sqlancer; import sqlancer.common.oracle.TestOracle; public interface OracleFactory<G extends GlobalState<?, ?, ?>> { TestOracle create(G globalState) throws Exception; /** * Indicates whether the test oracle requires that all tables (including views) contain at least one row. * * @return whether the test oracle requires at least one row per table */ default boolean requiresAllTablesToContainRows() { return false; } }