Domanda

I was wondering how Flyway handles exceptions thrown from classes that implement the JdbcMigration interface.

Does Flyway roll back the transaction? Does it stop doing further migrations?

È stato utile?

Soluzione

Does Flyway roll back the transaction?

Yes, it will rollback the transaction until the latest well executed script or latest commit done. Then it will log the Exception and notify you (depending how you configure it).

Does it stop doing further migrations?

AFAIK that's the common behavior, it will stop if it encounters an error.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top