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