sqlancer.common.ast.newast.NewBetweenOperatorNode 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.common.ast.newast;
public class NewBetweenOperatorNode implements Node {
protected Node left;
protected Node middle;
protected Node right;
protected boolean isTrue;
public NewBetweenOperatorNode(Node left, Node middle, Node right, boolean isTrue) {
this.left = left;
this.middle = middle;
this.right = right;
this.isTrue = isTrue;
}
public Node getLeft() {
return left;
}
public Node getMiddle() {
return middle;
}
public Node getRight() {
return right;
}
public boolean isTrue() {
return isTrue;
}
}