Open
Description
MariaDbDialect
extends MySqlDialect
, but does not implement it's own public static INSTANCE
that returns a MariaDbDialect
instance. This makes MariaDbDialect.INSTANCE
indistinguishable from MySqlDialect.INSTANCE
using instanceof
.
We can create it manually, i.e.
new MariaDbDialect(MySqlDialect.MYSQL_IDENTIFIER_PROCESSING)
But it would be nice for MariaDbDialect
to have that out of the box. If using a starter, then it would be problematic to create the dialect "the right way".