You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, Liquibase tries to execute each changeset within a transaction.
Since CockroachDB does not support schema changes within transactions yet, we can use the supportsDDLInTransaction() method on the Database class to disable this on the CockroachDatabase class.
If runInTransaction=true, we should throw an error that this is unsupported.
The text was updated successfully, but these errors were encountered:
By default, Liquibase tries to execute each changeset within a transaction.
Since CockroachDB does not support schema changes within transactions yet, we can use the
supportsDDLInTransaction()
method on the Database class to disable this on theCockroachDatabase
class.If
runInTransaction=true
, we should throw an error that this is unsupported.The text was updated successfully, but these errors were encountered: