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

sqlancer.citus.CitusGlobalState 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.citus;

import java.sql.SQLException;

import sqlancer.postgres.PostgresGlobalState;

public class CitusGlobalState extends PostgresGlobalState {

    private boolean repartition;

    public void setRepartition(boolean repartition) {
        this.repartition = repartition;
    }

    public boolean getRepartition() {
        return repartition;
    }

    @Override
    public CitusSchema readSchema() throws SQLException {
        return CitusSchema.fromConnection(getConnection(), getDatabaseName());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy