// adding an incomplete, non-erasing series attribute should fail
UpdatableSchema schema = db.getUpdatableSchemas("schema1f").iterator().next();
schema.addAttribute(1, 4);
schema.setAttributeProperty(1, 4, db.getProperty("prop2", true));
// default value is not set, but null is not okay for prop2
schema.applyUpdates();
expectException();
} catch (Exception e) {
assertException(e, D.D30105, D.D30113);
}
}