All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sqlancer.mariadb.ast.MariaDBAggregate Maven / Gradle / Ivy

Go to download

SQLancer finds logic bugs in Database Management Systems through automatic testing

There is a newer version: 2.0.0
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy