Skip to content

Commit 8480b18

Browse files
authored
Handle Oracle NUMBER correctly by letting JdbcArrowTypeConverter hand… (#2573)
1 parent 3afa6ab commit 8480b18

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

athena-oracle/src/main/java/com/amazonaws/athena/connectors/oracle/OracleMetadataHandler.java

+11-5
Original file line numberDiff line numberDiff line change
@@ -361,29 +361,32 @@ private Schema getSchema(Connection jdbcConnection, TableName tableName, Schema
361361

362362
String columnName = resultSet.getString(COLUMN_NAME);
363363
int jdbcColumnType = resultSet.getInt("DATA_TYPE");
364-
int scale = resultSet.getInt("COLUMN_SIZE");
364+
int precision = resultSet.getInt("COLUMN_SIZE");
365+
int scale = resultSet.getInt("DECIMAL_DIGITS");
365366

366367
LOGGER.debug("columnName: {}", columnName);
367-
LOGGER.debug("arrowColumnType: {}", arrowColumnType);
368368
LOGGER.debug("jdbcColumnType: {}", jdbcColumnType);
369+
LOGGER.debug("precision: {}", precision);
370+
LOGGER.debug("scale: {}", scale);
371+
LOGGER.debug("arrowColumnType: {}", arrowColumnType);
369372

370373
/**
371374
* below data type conversion doing since a framework not giving appropriate
372375
* data types for oracle data types.
373376
*/
374377

375-
/** Handling TIMESTAMP, DATE, 0 Precision **/
378+
/** Convert 0 scale Decimals to integer **/
376379
if (arrowColumnType != null && arrowColumnType.getTypeID().equals(ArrowType.ArrowTypeID.Decimal)) {
377380
String[] data = arrowColumnType.toString().split(",");
378-
if (scale == 0 || Integer.parseInt(data[1].trim()) < 0) {
381+
if (Integer.parseInt(data[1].trim()) <= 0) {
379382
arrowColumnType = Types.MinorType.BIGINT.getType();
380383
}
381384
}
382385

383386
/**
384387
* Converting an Oracle date data type into DATEDAY MinorType
385388
*/
386-
if (jdbcColumnType == java.sql.Types.TIMESTAMP && scale == 7) {
389+
if (jdbcColumnType == java.sql.Types.TIMESTAMP && precision == 7) {
387390
arrowColumnType = Types.MinorType.DATEDAY.getType();
388391
}
389392

@@ -403,6 +406,9 @@ private Schema getSchema(Connection jdbcConnection, TableName tableName, Schema
403406
LOGGER.warn("getSchema: column[{}] type is null setting it to varchar | JDBC Type is [{}]", columnName, jdbcColumnType);
404407
arrowColumnType = Types.MinorType.VARCHAR.getType();
405408
}
409+
410+
LOGGER.debug("new arrowColumnType: {}", arrowColumnType);
411+
406412
schemaBuilder.addField(FieldBuilder.newBuilder(columnName, arrowColumnType).build());
407413
}
408414

0 commit comments

Comments
 (0)