Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1957,8 +1957,6 @@ public static DataType getDataTypeFromSQLTypeValue(final int sqlType) {
return RecordFieldType.BOOLEAN.getDataType();
case Types.TINYINT:
return RecordFieldType.BYTE.getDataType();
case Types.CHAR:
return RecordFieldType.CHAR.getDataType();
case Types.DATE:
return RecordFieldType.DATE.getDataType();
case Types.DOUBLE:
Expand All @@ -1971,6 +1969,7 @@ public static DataType getDataTypeFromSQLTypeValue(final int sqlType) {
return RecordFieldType.INT.getDataType();
case Types.SMALLINT:
return RecordFieldType.SHORT.getDataType();
case Types.CHAR:
case Types.VARCHAR:
case Types.LONGNVARCHAR:
case Types.LONGVARCHAR:
Expand Down