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

sqlancer.cockroachdb.ast.CockroachDBInOperation 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.cockroachdb.ast;

import java.util.List;

public class CockroachDBInOperation implements CockroachDBExpression {

    private final CockroachDBExpression left;
    private final List right;

    public CockroachDBInOperation(CockroachDBExpression left, List right) {
        this.left = left;
        this.right = right;
    }

    public CockroachDBExpression getLeft() {
        return left;
    }

    public List getRight() {
        return right;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy