Need to return error when TRX migration contains queries that can't be used in migration or can't be rolled back in a migration.
For example, MySQL autocommits all schema changing queries: https://dev.mysql.com/doc/refman/8.0/en/implicit-commit.html
When such query is found, migration should not start and warning must be printed to the output:
Please use NOTRX for MySQL migrations, see https://dev.mysql.com/doc/refman/8.0/en/implicit-commit.html
Need to return error when TRX migration contains queries that can't be used in migration or can't be rolled back in a migration.
For example, MySQL autocommits all schema changing queries: https://dev.mysql.com/doc/refman/8.0/en/implicit-commit.html
When such query is found, migration should not start and warning must be printed to the output:
Please use NOTRX for MySQL migrations, see https://dev.mysql.com/doc/refman/8.0/en/implicit-commit.html