MariaDB not supported ? #260
-
Hey, I wanted to use Bob in my new project which uses MariaDB but unfortunetely I hit roadblock that I cannot bypass. mysql:
dsn: "blabla:blabla@tcp(localhost:3306)/default"
except:
default.schema_migrations: after running command
im getting error:
This error still happens even if I delete all my tables... Did I misconfigure something or MariaDB is not supported via MYSQL driver ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
MariaDB is not supported. So far no effort has been made to test if the MySQL integration works with MariaDB at all. In the future, I would like to make a dedicated driver for MariaDB. As MariaDB diverges more and more from MySQL, it is not sensible to reuse the same driver. As with many things, the primary blocker is time. |
Beta Was this translation helpful? Give feedback.
-
Got it ! Im very early into project so I will just swap to Postgres and call it a day. Maybe it would be good to mention it in documentation that MariaDB is not supported trough MySQL integration ? I think a lot of people (like me) still thinks that MariaDB = MySQL, which as you mentioned is not the case anymore. Thank you for your time :) |
Beta Was this translation helpful? Give feedback.
MariaDB is not supported. So far no effort has been made to test if the MySQL integration works with MariaDB at all.
In the future, I would like to make a dedicated driver for MariaDB. As MariaDB diverges more and more from MySQL, it is not sensible to reuse the same driver.
The reasons why we have created dedicated drivers for each dialect is the same reason why MariaDB should have it's own drivers.
As with many things, the primary blocker is time.