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

sqlancer.common.schema.TableIndex 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.common.schema;

public class TableIndex {

    private final String indexName;

    protected TableIndex(String indexName) {
        this.indexName = indexName;
    }

    public static TableIndex create(String indexName) {
        return new TableIndex(indexName);
    }

    public String getIndexName() {
        return indexName;
    }

    @Override
    public String toString() {
        return indexName;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy