sqlancer.common.ast.newast.NewAliasNode 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 NewAliasNode implements Node {
private final Node expr;
private final String alias;
public NewAliasNode(Node expr, String alias) {
this.expr = expr;
this.alias = alias;
}
public Node getExpr() {
return expr;
}
public String getAlias() {
return alias;
}
}