Skip to content

Commit

Permalink
Fix failing type check on sql server
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarrez committed Aug 2, 2024
1 parent 24fb7f6 commit 1104308
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ protected Map<String, String> internalGetColumnMetaData(String tableName) {
columnType = EntityParameterTypesOverview.PARAMETER_TYPE_INTEGER;

} else if (columnType.equalsIgnoreCase("int8") // postgres
|| columnType.equalsIgnoreCase("serial")) { // postgres
|| columnType.equalsIgnoreCase("serial") // postgres
|| columnType.equalsIgnoreCase("numeric")) { // sql server
columnType = EntityParameterTypesOverview.PARAMETER_TYPE_BIGINT;

} else if (columnType.equalsIgnoreCase("bit")
Expand Down

0 comments on commit 1104308

Please sign in to comment.