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 11
11
import org .hibernate .dialect .Dialect ;
12
12
import org .hibernate .type .descriptor .java .BigIntegerTypeDescriptor ;
13
13
import org .hibernate .type .descriptor .sql .BigIntTypeDescriptor ;
14
+ import org .hibernate .type .descriptor .sql .NumericTypeDescriptor ;
14
15
15
16
/**
16
17
* A type that maps between a {@link java.sql.Types#NUMERIC NUMERIC} and {@link BigInteger}.
@@ -25,7 +26,7 @@ public class BigIntegerType
25
26
public static final BigIntegerType INSTANCE = new BigIntegerType ();
26
27
27
28
public BigIntegerType () {
28
- super ( BigIntTypeDescriptor .INSTANCE , BigIntegerTypeDescriptor .INSTANCE );
29
+ super ( NumericTypeDescriptor .INSTANCE , BigIntegerTypeDescriptor .INSTANCE );
29
30
}
30
31
31
32
@ Override
You can’t perform that action at this time.
0 commit comments