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();
Assert.assertFalse(cluster.useWal());
Assert.assertEquals(cluster.recordGrowFactor(), 2f);
Assert.assertEquals(cluster.recordOverflowGrowFactor(), 2f);
Assert.assertEquals(cluster.compression(), "nothing");
OStorage storage = database.getStorage();