sqlancer.common.query.SQLQueryProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlancer Show documentation
Show all versions of sqlancer Show documentation
SQLancer finds logic bugs in Database Management Systems through automatic testing
package sqlancer.common.query;
@FunctionalInterface
public interface SQLQueryProvider {
SQLQueryAdapter getQuery(S globalState) throws Exception;
}