Skip to content

Commit

Permalink
chore: Make the MariaDBDialect class extendable to be consistent wi…
Browse files Browse the repository at this point in the history
…th other dialect classes
  • Loading branch information
joc-a committed Jan 29, 2025
1 parent b184a74 commit 8c9404a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ internal object MariaDBFunctionProvider : MysqlFunctionProvider() {
/**
* MariaDB dialect implementation.
*/
class MariaDBDialect : MysqlDialect() {
open class MariaDBDialect : MysqlDialect() {
override val name: String = dialectName
override val functionProvider: FunctionProvider = MariaDBFunctionProvider
override val supportsOnlyIdentifiersInGeneratedKeys: Boolean = true
Expand Down

0 comments on commit 8c9404a

Please sign in to comment.