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

sqlancer.cockroachdb.ast.CockroachDBTableReference 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.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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy