@@ -361,29 +361,32 @@ private Schema getSchema(Connection jdbcConnection, TableName tableName, Schema
361
361
362
362
String columnName = resultSet .getString (COLUMN_NAME );
363
363
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" );
365
366
366
367
LOGGER .debug ("columnName: {}" , columnName );
367
- LOGGER .debug ("arrowColumnType: {}" , arrowColumnType );
368
368
LOGGER .debug ("jdbcColumnType: {}" , jdbcColumnType );
369
+ LOGGER .debug ("precision: {}" , precision );
370
+ LOGGER .debug ("scale: {}" , scale );
371
+ LOGGER .debug ("arrowColumnType: {}" , arrowColumnType );
369
372
370
373
/**
371
374
* below data type conversion doing since a framework not giving appropriate
372
375
* data types for oracle data types.
373
376
*/
374
377
375
- /** Handling TIMESTAMP, DATE, 0 Precision **/
378
+ /** Convert 0 scale Decimals to integer **/
376
379
if (arrowColumnType != null && arrowColumnType .getTypeID ().equals (ArrowType .ArrowTypeID .Decimal )) {
377
380
String [] data = arrowColumnType .toString ().split ("," );
378
- if (scale == 0 || Integer .parseInt (data [1 ].trim ()) < 0 ) {
381
+ if (Integer .parseInt (data [1 ].trim ()) <= 0 ) {
379
382
arrowColumnType = Types .MinorType .BIGINT .getType ();
380
383
}
381
384
}
382
385
383
386
/**
384
387
* Converting an Oracle date data type into DATEDAY MinorType
385
388
*/
386
- if (jdbcColumnType == java .sql .Types .TIMESTAMP && scale == 7 ) {
389
+ if (jdbcColumnType == java .sql .Types .TIMESTAMP && precision == 7 ) {
387
390
arrowColumnType = Types .MinorType .DATEDAY .getType ();
388
391
}
389
392
@@ -403,6 +406,9 @@ private Schema getSchema(Connection jdbcConnection, TableName tableName, Schema
403
406
LOGGER .warn ("getSchema: column[{}] type is null setting it to varchar | JDBC Type is [{}]" , columnName , jdbcColumnType );
404
407
arrowColumnType = Types .MinorType .VARCHAR .getType ();
405
408
}
409
+
410
+ LOGGER .debug ("new arrowColumnType: {}" , arrowColumnType );
411
+
406
412
schemaBuilder .addField (FieldBuilder .newBuilder (columnName , arrowColumnType ).build ());
407
413
}
408
414
0 commit comments