Skip to content

Commit

Permalink
Fix mariadb db type test
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarrez committed Jul 17, 2024
1 parent 057a08c commit 646e84a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ protected Map<String, String> getColumnMetaData(String tableName) {
columnType = EntityParameterTypesOverview.PARAMETER_TYPE_BIGINT;

} else if (columnType.equalsIgnoreCase("bit")
|| columnType.equalsIgnoreCase("TINYINT") // mariadb
|| columnType.equalsIgnoreCase("NUMBER") // oracle
|| columnType.equalsIgnoreCase("bool")) { // postgres
columnType = EntityParameterTypesOverview.PARAMETER_TYPE_BOOLEAN;
Expand Down

0 comments on commit 646e84a

Please sign in to comment.