I have a loadUpdateChange set and wants to get id value from a sequence but seems like it is been ignored by liquibase. Following is the change set
<loadUpdateData
file="/db/data/017_Hubs.csv"
separator=";"
tableName="hub"
usePreparedStatements="true"
primaryKey="id">
<column name="id" type="numeric" defaultValueComputed="nextval('sequence_generator')"/>
<column name="name" type="string"/>
<column name="url" type="string"/>
<column name="facility_type" type="string"/>
<column name="address_id" type="numeric"/>
<column name="tenant_id" type="numeric"/>
<column name="start_date" type="date" defaultValue="${now}"/>
<column name="email" type="string"/>
<column name="phone" type="string"/>
<column name="status" type="string"/>
</loadUpdateData>