File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
documentation-website/Writerside/topics
exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/vendors Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 5
5
` UnsupportedByDialectException ` . Previously, the setting would be ignored and SQL function generation would not include a ` DISTINCT ` clause.
6
6
* In Oracle and H2 Oracle, the ` ubyte() ` column now maps to data type ` NUMBER(3) ` instead of ` NUMBER(4) ` .
7
7
* In Oracle and H2 Oracle, the ` ushort() ` column now maps to data type ` NUMBER(5) ` instead of ` NUMBER(6) ` .
8
+ * In Oracle and H2 Oracle, the ` uinteger() ` column now maps to data type ` NUMBER(10) ` instead of ` NUMBER(13) ` .
8
9
9
10
## 0.55.0
10
11
* The ` DeleteStatement ` property ` table ` is now deprecated in favor of ` targetsSet ` , which holds a ` ColumnSet ` that may be a ` Table ` or ` Join ` .
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ internal object OracleDataTypeProvider : DataTypeProvider() {
27
27
override fun ushortType (): String = " NUMBER(5)"
28
28
override fun integerType (): String = " NUMBER(12)"
29
29
override fun integerAutoincType (): String = " NUMBER(12)"
30
- override fun uintegerType (): String = " NUMBER(13 )"
31
- override fun uintegerAutoincType (): String = " NUMBER(13 )"
30
+ override fun uintegerType (): String = " NUMBER(10 )"
31
+ override fun uintegerAutoincType (): String = " NUMBER(10 )"
32
32
override fun longType (): String = " NUMBER(19)"
33
33
override fun longAutoincType (): String = " NUMBER(19)"
34
34
override fun ulongType (): String = " NUMBER(20)"
You can’t perform that action at this time.
0 commit comments