Thinking through an MDO where different user groups each own a different input dataset. If one of them renames a property-backing column or messes up a primary key, does that block indexing for the entire MDO, or just the columns that are backed by the broken input dataset?
Answering my own question after testing: MDOs are a lot more robust than this. Failures are localized to just updates to the input dataset that’s failing, not the entire object.
In the screenshot below, Test dataset 2 is broken because of a schema change. This makes updates not occur at all– it doesn’t update any properties until the error is fixed.
Test dataset 1 and the properties backed by its columns is unaffected by this, updates will propagate to objects as usual.
All of this is true for duplicate PK errors as well as schema errors.
