OCluster cluster = database.getStorage().getClusterById(clusterId);
Assert.assertTrue(cluster.useWal());
Assert.assertEquals(cluster.recordGrowFactor(), 1.2f);
Assert.assertEquals(cluster.recordOverflowGrowFactor(), 1.2f);
Assert.assertEquals(cluster.compression(), OGlobalConfiguration.STORAGE_COMPRESSION_METHOD.getValueAsString());
database.command(new OCommandSQL("alter cluster clusterTest use_wal false")).execute();
database.command(new OCommandSQL("alter cluster clusterTest record_grow_factor 2")).execute();
database.command(new OCommandSQL("alter cluster clusterTest record_overflow_grow_factor 2")).execute();
database.command(new OCommandSQL("alter cluster clusterTest compression nothing")).execute();