Skip to content

Commit

Permalink
DDL location with MariaDB ... (#196) (#199)
Browse files Browse the repository at this point in the history
Co-authored-by: Panagiotis Sotiropoulos <psotirop@redhat.com>
  • Loading branch information
chengfang and panossot committed Mar 28, 2022
1 parent 6d4eab6 commit a9bdf12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1168,7 +1168,7 @@ private String getDDLLocation(final String databaseProductName) {
return ddlFile;
}
}
if (databaseProductName.contains("MySQL")) {
if (databaseProductName.contains("MySQL") || databaseProductName.contains("MariaDB")) {
ddlFile = "sql/jberet-mysql.ddl";
} else if (databaseProductName.startsWith("Oracle")) {
ddlFile = "sql/jberet-oracle.ddl";
Expand Down

0 comments on commit a9bdf12

Please sign in to comment.