package sqlancer.mysql; import java.sql.SQLException; import sqlancer.SQLGlobalState; import sqlancer.mysql.MySQLOptions.MySQLOracleFactory; public class MySQLGlobalState extends SQLGlobalState { @Override protected MySQLSchema readSchema() throws SQLException { return MySQLSchema.fromConnection(getConnection(), getDatabaseName()); } public boolean usesPQS() { return getDmbsSpecificOptions().oracles.stream().anyMatch(o -> o == MySQLOracleFactory.PQS); } }