Reputation: 6808
I am migrating my database to MySQL to MariaDB. I have binary storage engine in MySQL and MariaDB does not support it.
How can I convert this to make sure my tables will works? Thank You
Upvotes: 4
Views: 1147
Reputation: 604
If this is a binary engine that works with MySQL and you have the source for it, then you should be able to easily port it to MariaDB:
In practice one should be able to port a storage engine for MySQL to MariaDB within 30 minutes or so.
If you don't have the source code, you need to ask the vendor for the storage engine to support MySQL. They should be able to do that without much trouble (as long it's a true plugg-in storage engine and not something that makes big changes to the MySQL/MariaDB upper level code).
Upvotes: 12