public void test_020_create_schema_ok_but_not_applied() {
try {
UpdatableSchema schema = db.createSchema("schema1", null);
schema.addSeries(1);
schema.setSeriesName(1, "x25");
schema.addAttribute(1);
schema.setAttributeProperty(1, db.getProperty("prop1", true));
schema.setAttributeDefault(1, "t1v1");
assertEquals("t1v1", schema.getAttributeDefinition(1, true).getValue().toString());
assertEquals("t1v1", schema.getAttributeDefinition("prop1", true).getValue().toString());
} catch (Exception e) {