Skip to content

Commit 0f153c1

Browse files
committed
Reduce precision of mapped ScalarDB BIGINT for Oracle from NUMBER(19) to NUMBER(16)
1 parent 74c6925 commit 0f153c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/scalar/db/storage/jdbc/RdbEngineOracle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public boolean isDuplicateIndexError(SQLException e) {
204204
public String getDataTypeForEngine(DataType scalarDbDataType) {
205205
switch (scalarDbDataType) {
206206
case BIGINT:
207-
return "NUMBER(19)";
207+
return "NUMBER(16)";
208208
case BLOB:
209209
return "RAW(2000)";
210210
case BOOLEAN:

0 commit comments

Comments
 (0)