I am using liquibase with the following flags to generate a listing for any index variations in a cockroachdb. (Snapshots taken before and then after an upgrade). The diff is generating drop and create statements for an index which is correct in the database, but liquibase appears to ignore the ‘DESC’ flag on one of the index columns, so the generated code produced is wrong.
Liquibase is version 3.8.0
Cockroachdb is version 20.1
Flags:
…/liquibase --diffTypes=indexes
–outputFile=$diffreport
–url=$targetURL
diff
–referenceUrl=$referenceURL
Please advise if cockroach indexes which have DESC column attributes are supported?