Skip to content
Open
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 @@ -19,7 +19,7 @@

import static java.sql.Types.*;

import java.math.BigInteger;
import java.math.BigDecimal;
import java.sql.Date;
import java.sql.SQLException;
import java.sql.Timestamp;
Expand Down Expand Up @@ -126,7 +126,7 @@ static String columnClassName(TTypeId tType, JdbcColumnAttributes columnAttribut
case TIMESTAMP_WITH_TIMEZONE:
return TimestampTZ.class.getName();
case DECIMAL:
return BigInteger.class.getName();
return BigDecimal.class.getName();
case BINARY:
return byte[].class.getName();
case OTHER:
Expand Down
Loading