Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ public Schema getSchema(ResultSetMetaData metadata, int index) throws SQLExcepti
metadata.isSigned(index), true);
}

public Schema getSchema(String typeName, int sqlType, int precision, int scale, String columnName,
boolean isSigned) throws SQLException {
return DBUtils.getSchema(typeName, sqlType, precision, scale, columnName, isSigned, true);
}

@Override
public boolean shouldIgnoreColumn(ResultSetMetaData metadata, int index) throws SQLException {
return false;
Expand Down
18 changes: 17 additions & 1 deletion database-commons/src/main/java/io/cdap/plugin/db/DBRecord.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
import java.math.BigDecimal;
import java.math.BigInteger;
import java.nio.ByteBuffer;
import java.sql.Connection;
import java.sql.Date;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
Expand Down Expand Up @@ -187,7 +188,22 @@ protected void handleField(ResultSet resultSet, StructuredRecord.Builder recordB

protected void setField(ResultSet resultSet, StructuredRecord.Builder recordBuilder, Schema.Field field,
int columnIndex, int sqlType, int sqlPrecision, int sqlScale) throws SQLException {
Object o = DBUtils.transformValue(sqlType, sqlPrecision, sqlScale, resultSet, columnIndex);
Object fieldValue = DBUtils.transformValue(sqlType, sqlPrecision, sqlScale, resultSet, columnIndex);
populateRecordField(resultSet.getStatement().getConnection(), recordBuilder, field, fieldValue);
}

/**
* Populates the value of a field in the {@link StructuredRecord.Builder}.
*
* @param connection the SQL connection, provided for subclass overrides that require database connection
* @param recordBuilder the builder for constructing the {@link StructuredRecord}
* @param field the field to set in the record
* @param o the object value read from the database
* @throws SQLException if an error occurs while setting the field value
*/
protected void populateRecordField(Connection connection, StructuredRecord.Builder recordBuilder,
Schema.Field field, Object o)
throws SQLException {
if (o instanceof Date) {
recordBuilder.setDate(field.getName(), ((Date) o).toLocalDate());
} else if (o instanceof Time) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,17 @@
import java.io.InputStream;
import java.lang.reflect.InvocationTargetException;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.nio.ByteBuffer;
import java.sql.Blob;
import java.sql.Clob;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.SQLXML;
import java.sql.Struct;
import java.sql.Timestamp;
import java.sql.Types;
import java.time.LocalDateTime;
Expand All @@ -43,6 +48,8 @@
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;

/**
* Oracle Source implementation {@link org.apache.hadoop.mapreduce.lib.db.DBWritable} and
Expand Down Expand Up @@ -106,13 +113,111 @@ record = recordBuilder.build();
@Override
protected void handleField(ResultSet resultSet, StructuredRecord.Builder recordBuilder, Schema.Field field,
int columnIndex, int sqlType, int sqlPrecision, int sqlScale) throws SQLException {
if (OracleSourceSchemaReader.ORACLE_TYPES.contains(sqlType) || sqlType == Types.NCLOB) {
if (isOracleSpecificType(sqlType)) {
handleOracleSpecificType(resultSet, recordBuilder, field, columnIndex, sqlType, sqlPrecision, sqlScale);
} else {
setField(resultSet, recordBuilder, field, columnIndex, sqlType, sqlPrecision, sqlScale);
}
}

protected boolean isOracleSpecificType(int sqlType) {
return OracleSourceSchemaReader.ORACLE_TYPES.contains(sqlType)
|| sqlType == Types.NCLOB
|| sqlType == Types.STRUCT;
}

@Override
protected void populateRecordField(Connection connection, StructuredRecord.Builder recordBuilder,
Schema.Field field, Object attrValue)
throws SQLException {
if (attrValue == null) {
recordBuilder.set(field.getName(), null);
return;
}

Schema fieldSchema = field.getSchema().isNullable() ? field.getSchema().getNonNullable()
: field.getSchema();
String attrClassName = attrValue.getClass().getName();
if (attrValue instanceof Struct) {
recordBuilder.set(field.getName(), convertStructToRecord((Struct) attrValue, fieldSchema, connection));
return;
}
if (attrValue instanceof Clob) {
Clob clob = (Clob) attrValue;
recordBuilder.set(field.getName(), clob.getSubString(1, (int) clob.length()));
return;
}
if (attrValue instanceof Blob) {
Blob blob = (Blob) attrValue;
recordBuilder.set(field.getName(), blob.getBytes(1, (int) blob.length()));
return;
}
if (attrValue instanceof SQLXML) {
recordBuilder.set(field.getName(), ((SQLXML) attrValue).getString());
return;
}
if ("oracle.sql.INTERVALDS".equals(attrClassName) || "oracle.sql.INTERVALYM".equals(attrClassName)) {
recordBuilder.set(field.getName(), attrValue.toString());
return;
}
if (attrValue instanceof BigDecimal) {
handleDecimalValue((BigDecimal) attrValue, fieldSchema, recordBuilder, field);
return;
}
if (attrValue instanceof Timestamp) {
handleTimestampValue((Timestamp) attrValue, fieldSchema, recordBuilder, field, connection);
return;
}
if (attrValue instanceof OffsetDateTime) {
handleOffsetDateTimeValue((OffsetDateTime) attrValue, fieldSchema, recordBuilder, field);
return;
}
if (isBfileValue(attrValue, field.getName())) {
recordBuilder.set(field.getName(), getBfileBytes(attrValue, field.getName()));
return;
}

super.populateRecordField(connection, recordBuilder, field, attrValue);
}

private void handleTimestampValue(Timestamp timestamp, Schema fieldSchema,
StructuredRecord.Builder recordBuilder, Schema.Field field,
Connection connection) throws SQLException {
if (Schema.LogicalType.DATETIME.equals(fieldSchema.getLogicalType())) {
recordBuilder.setDateTime(field.getName(), timestamp.toLocalDateTime());
} else {
super.populateRecordField(connection, recordBuilder, field, timestamp);
}
}

private void handleOffsetDateTimeValue(OffsetDateTime offsetDateTime, Schema fieldSchema,

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These types would be at top level/root level also and their handling should already exist, any specific reason we are handling record members separately?

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this comment applies to all types handling

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Top-level columns are read directly from the ResultSet using column positions, but STRUCT members come from struct.getAttributes() as raw Java objects where no ResultSet is available. Also, Oracle returns all STRUCT numbers as BigDecimal, dates as Timestamp/OffsetDateTime, and LOBs as Clob/Blob objects. We need this handling in populateRecordField to convert these raw objects into the correct types so that their value can be stored properly.

StructuredRecord.Builder recordBuilder, Schema.Field field) {
ZonedDateTime zonedDateTime = offsetDateTime.atZoneSameInstant(ZoneId.of("UTC"));
if (fieldSchema.getLogicalType() != null &&
(Schema.LogicalType.TIMESTAMP_MICROS.equals(fieldSchema.getLogicalType()) ||
Schema.LogicalType.TIMESTAMP_MILLIS.equals(fieldSchema.getLogicalType()))) {
recordBuilder.setTimestamp(field.getName(), zonedDateTime);
} else if (Schema.LogicalType.DATETIME.equals(fieldSchema.getLogicalType())) {
LocalDateTime systemLocalDateTime = offsetDateTime.atZoneSameInstant(ZoneId.systemDefault()).toLocalDateTime();
recordBuilder.setDateTime(field.getName(), systemLocalDateTime);
} else {
recordBuilder.set(field.getName(), zonedDateTime.toString());
}
}

private boolean isBfileValue(Object attrValue, String fieldName) throws SQLException {
ClassLoader oracleLoader = attrValue.getClass().getClassLoader();
try {
if (oracleLoader != null && oracleLoader.loadClass("oracle.jdbc.OracleBfile").isInstance(attrValue)) {
return true;
}
} catch (ClassNotFoundException e) {
throw new SQLException(String.format("Column '%s' is of type 'BFILE', which is not supported with " +
"this version of the JDBC driver.", fieldName), e);
}
return false;
}

@Override
protected void writeNonNullToDB(PreparedStatement stmt, Schema fieldSchema,
String fieldName, int fieldIndex) throws SQLException {
Expand Down Expand Up @@ -169,6 +274,33 @@ protected void writeNonNullToDB(PreparedStatement stmt, Schema fieldSchema,
}
}

private void handleDecimalValue(BigDecimal bigDecimal, Schema fieldSchema,
StructuredRecord.Builder recordBuilder, Schema.Field field) {
if (Schema.LogicalType.DECIMAL.equals(fieldSchema.getLogicalType())) {
recordBuilder.setDecimal(field.getName(), bigDecimal.setScale(fieldSchema.getScale(), RoundingMode.HALF_UP));
return;
}
switch (fieldSchema.getType()) {
case DOUBLE:
recordBuilder.set(field.getName(), bigDecimal.doubleValue());
break;
case FLOAT:
recordBuilder.set(field.getName(), bigDecimal.floatValue());
break;
case INT:
recordBuilder.set(field.getName(), bigDecimal.intValue());
break;
case LONG:
recordBuilder.set(field.getName(), bigDecimal.longValue());
break;
case STRING:
recordBuilder.set(field.getName(), bigDecimal.toPlainString());
break;
default:
recordBuilder.set(field.getName(), bigDecimal);
}
}

/**
* Creates an instance of 'oracle.sql.TIMESTAMPTZ' which corresponds to the specified timestamp with time zone string.
* @param connection sql connection.
Expand Down Expand Up @@ -232,11 +364,15 @@ private Object createOracleTimestamp(Connection connection, String timestampStri
*/
private byte[] getBfileBytes(ResultSet resultSet, String columnName) throws SQLException {
Object bfile = resultSet.getObject(columnName);
return getBfileBytes(bfile, columnName);
}

public byte[] getBfileBytes(Object bfile, String columnName) {
if (bfile == null) {
return null;
}
try {
ClassLoader classLoader = resultSet.getClass().getClassLoader();
ClassLoader classLoader = bfile.getClass().getClassLoader();
Class<?> oracleBfileClass = classLoader.loadClass("oracle.jdbc.OracleBfile");
boolean isFileExist = (boolean) oracleBfileClass.getMethod("fileExists").invoke(bfile);
if (!isFileExist) {
Expand Down Expand Up @@ -341,6 +477,15 @@ private void handleOracleSpecificType(ResultSet resultSet, StructuredRecord.Buil
case OracleSourceSchemaReader.LONG_RAW:
recordBuilder.set(field.getName(), resultSet.getBytes(columnIndex));
break;
case Types.STRUCT:
Struct structValue = (Struct) resultSet.getObject(columnIndex);
if (structValue != null) {
recordBuilder.set(field.getName(), convertStructToRecord(structValue, nonNullSchema,
resultSet.getStatement().getConnection()));
} else {
recordBuilder.set(field.getName(), null);
}
break;
case Types.DECIMAL:
case Types.NUMERIC:
// This is the only way to differentiate FLOAT/REAL columns from other numeric columns, that based on NUMBER.
Expand Down Expand Up @@ -371,6 +516,57 @@ private void handleOracleSpecificType(ResultSet resultSet, StructuredRecord.Buil
}
}

/**
* Converts a JDBC {@link Struct} into a {@link StructuredRecord} based on the provided schema.
*
* @param struct the SQL structured type containing the source data attributes
* @param schema the target record schema defining the fields to map
* @param connection the database connection
* @return a populated {@code StructuredRecord} instance
* @throws SQLException if an error occurs reading the struct attributes or metadata
*/
protected StructuredRecord convertStructToRecord(Struct struct, Schema schema, Connection connection)
throws SQLException {
Map<String, Object> attributeMap = getAttributeMap(struct, schema, connection);
StructuredRecord.Builder builder = StructuredRecord.builder(schema);

for (Schema.Field field : schema.getFields()) {
Object attrValue = attributeMap.get(field.getName());
populateRecordField(connection, builder, field, attrValue);
}
return builder.build();
}

/**
* Extracts attributes from a {@link Struct} into a case-insensitive map indexed by column name.
* Uses reflection to extract underlying metadata (e.g., from Oracle StructDescriptor).
*
* @param struct the source SQL structured type
* @param schema the target schema used for context in error messages
* @param connection the database connection
* @return a case-insensitive {@code Map} linking column names to their attribute values
* @throws SQLException if metadata extraction fails or driver-specific methods are inaccessible
*/
protected Map<String, Object> getAttributeMap(Struct struct, Schema schema, Connection connection)
throws SQLException {
Map<String, Object> attributeMap = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
Object[] attributes = struct.getAttributes();
if (attributes != null) {
try {
Object descriptor = struct.getClass().getMethod("getDescriptor").invoke(struct);

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why we need reflection here?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We use reflection to extract column names via getDescriptor() without adding a compile-time dependency on ojdbc (which is provided at runtime).

ResultSetMetaData metaData =
(ResultSetMetaData) descriptor.getClass().getMethod("getMetaData").invoke(descriptor);
for (int i = 1; i <= metaData.getColumnCount() && (i - 1) < attributes.length; i++) {
attributeMap.put(metaData.getColumnName(i), attributes[i - 1]);
}
} catch (Exception e) {
throw new SQLException(String.format("Failed to retrieve attribute metadata for Oracle STRUCT schema '%s': %s",
schema.getRecordName(), e.getMessage()));
}
}
return attributeMap;
}

/**
* Get the scale set in Non-nullable schema associated with the schema
* */
Expand Down
Loading
Loading