File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
hibernate-core/src/main/java/org/hibernate/type Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 1111import org .hibernate .dialect .Dialect ;
1212import org .hibernate .type .descriptor .java .BigIntegerTypeDescriptor ;
1313import org .hibernate .type .descriptor .sql .BigIntTypeDescriptor ;
14+ import org .hibernate .type .descriptor .sql .NumericTypeDescriptor ;
1415
1516/**
1617 * A type that maps between a {@link java.sql.Types#NUMERIC NUMERIC} and {@link BigInteger}.
@@ -25,7 +26,7 @@ public class BigIntegerType
2526 public static final BigIntegerType INSTANCE = new BigIntegerType ();
2627
2728 public BigIntegerType () {
28- super ( BigIntTypeDescriptor .INSTANCE , BigIntegerTypeDescriptor .INSTANCE );
29+ super ( NumericTypeDescriptor .INSTANCE , BigIntegerTypeDescriptor .INSTANCE );
2930 }
3031
3132 @ Override
You can’t perform that action at this time.
0 commit comments