Comment construire une clause where dans une LiquiBase changeset

Comment dois-je définir un ensemble de modifications dans 'LiquiBase la notation de la mise à jour d'une colonne de table avec un ET-ed clause where:

<changeSet id="ddl update tables : modify datatype for MY_TABLE.STATE_ABBREV" author="xxx">
    <preConditions onFail="MARK_RAN" onFailMessage="Column MY_TABLE.STATE_ABBREV doesn't exists.">
        <and>
            <tableExists tableName="MY_TABLE"/>
            <columnExists tableName="MY_TABLE" columnName="STATE_ABBREV"/>
        </and>
    </preConditions>
    <update tableName="MY_TABLE">
        <column name="STATE_ABBREV" value="AS"/>
        <where>AGU   /***AND STATE_ID=3***/ ??????????????????
        </where>
    </update>
</changeSet>

OriginalL'auteur du-it | 2014-09-26