Well, for some reason, the dynamic-update is no longer having any effect (maybe it never was in the first place and I am just going nuts? :) ).
Take this simple example:
Code:
<class
entity-name = "test"
dynamic-update = "true">
<id name="id" type="string"/>
<property name="foo" type="string"/>
<property name="bar" type="string"/>
</class>
Persisting this from an XML such as this:
Code:
<test>
<id>1</id>
<foo>1</foo>
</test>
causes the "bar" field to be updated, despite my dynamic-update setting.
What gives?!?
:(