I have mounted mariadb/server:10.3
with /var/lib/mysql
volume. I had issue while trying to perform query from backend which said that Table <table name> doesn't exist in engine
.
I did perform mysqlcheck
inside container and turned out that out of 20 tables two of them doesn't exist in engine
- and both of them are CamelCased. All the others are snake_cased. Don't ask me why is that.
First thing I'm gonna do is to rename them, but that's actually quite strange given that it works perfectly everywhere else. Any potential solutions aside from renaming or just explanation why it that? Is that Docker's fault or db's?