Skip to content

Commit

Permalink
[sqlserver] Add support bigint type as table split column (apache#2416)
Browse files Browse the repository at this point in the history
  • Loading branch information
GOODBOY008 authored Aug 22, 2023
1 parent 6fa02ef commit 2f79b24
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ private static DataType convertFromColumn(Column column) {
case Types.SMALLINT:
case Types.TINYINT:
return DataTypes.INT();
case Types.BIGINT:
return DataTypes.BIGINT();
case Types.FLOAT:
case Types.REAL:
case Types.DOUBLE:
Expand Down

0 comments on commit 2f79b24

Please sign in to comment.