sqlancer.mariadb.ast.MariaDBAggregate 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.mariadb.ast;
public class MariaDBAggregate extends MariaDBExpression {
private final MariaDBExpression expr;
private final MariaDBAggregateFunction aggr;
public MariaDBAggregate(MariaDBExpression expr, MariaDBAggregateFunction aggr) {
this.expr = expr;
this.aggr = aggr;
}
public enum MariaDBAggregateFunction {
COUNT
}
public MariaDBExpression getExpr() {
return expr;
}
public MariaDBAggregateFunction getAggr() {
return aggr;
}
}