sqlancer.mysql.ast.MySQLExpression 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.mysql.ast;
public interface MySQLExpression {
default MySQLConstant getExpectedValue() {
throw new AssertionError("PQS not supported for this operator");
}
}