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

sqlancer.tidb.ast.TiDBTableReference 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.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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy