sqlancer.mysql.ast.MySQLStringExpression 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 class MySQLStringExpression implements MySQLExpression {
private final String str;
private final MySQLConstant expectedValue;
public MySQLStringExpression(String str, MySQLConstant expectedValue) {
this.str = str;
this.expectedValue = expectedValue;
}
public String getStr() {
return str;
}
@Override
public MySQLConstant getExpectedValue() {
return expectedValue;
}
}