Is there a way to designate a particular attribute of a custom change as not affecting the changeset's checksum?
Background: I've written a column copying change/refactoring element that accomplishes copying and data conversion through a JDBC driver, rather than in SQL (Informix, curse its awful soul, can't convert a VARCHAR to a TEXT column in SQL). To make this reasonably performant I've added a fetchSize attribute. I now can't add this attribute to our existing usages of this custom refactoring element because it alters the checksum of the changeset of which they are a part.
I know that Liquibase features some annotations to help in this general area, but I couldn't find anything obvious.
Best,