Hi,
we are inserting bunch of data using CSV and have generated IDs everywhere.
To insert records that reference other records there is possibility to use computedValue.
This works just fine when using 'insert' (i.e. <column name="abc" valueComputed="SELECT...."/>
but when using 'loadData' it is not.
Even after specifying type="COMPUTED" (<column name="abc type="COMPUTED")
I can see its is properly picked up BUT
in https://github.com/liquibase/liquibase/blob/b9c14bac81bdb4913f0e66085243427fc4b17e11/liquibase-core/src/main/java/liquibase/statement/ExecutablePreparedStatementBase.java#L125 there is no case to actually USE the
computed value.
Are we doing something wrong or is this not supported at the moment?
Thanks,
Zbynek