sqlancer.cockroachdb.ast.CockroachDBTableReference 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.cockroachdb.ast;
import sqlancer.cockroachdb.CockroachDBSchema.CockroachDBTable;
public class CockroachDBTableReference implements CockroachDBExpression {
private final CockroachDBTable table;
public CockroachDBTableReference(CockroachDBTable table) {
this.table = table;
}
public CockroachDBTable getTable() {
return table;
}
}