sqlancer.tidb.ast.TiDBTableReference 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.tidb.ast;
import sqlancer.tidb.TiDBSchema.TiDBTable;
public class TiDBTableReference implements TiDBExpression {
private final TiDBTable table;
public TiDBTableReference(TiDBTable table) {
this.table = table;
}
public TiDBTable getTable() {
return table;
}
}