Skip to content

Commit

Permalink
Merge pull request #43 from ollionorg/fix/DPA-2740
Browse files Browse the repository at this point in the history
fix: DPA-2740 Oracle data type issue for integer in custom SQL
  • Loading branch information
satyamcldcvr authored Aug 19, 2024
2 parents 2b5bc76 + a0ebe14 commit 3054e80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,7 @@ private TableInfo<CommonField<Datatype>> getColumnMetadataForCustomSQL(ResultSet
.put(INTERNAL_COLUMN_TYPE, metaData.getColumnType(i))
.put(INTERNAL_COLUMN_TYPE_NAME, metaData.getColumnTypeName(i))
.put(INTERNAL_COLUMN_SIZE, metaData.getColumnDisplaySize(i))
.put(INTERNAL_DECIMAL_DIGITS, metaData.getScale(i))
.put(INTERNAL_IS_NULLABLE, metaData.isNullable(i)).build())
);
return new CommonField<>(columnName, datatype);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data:
connectorSubtype: database
connectorType: source
definitionId: b39a7370-74c3-45a6-ac3a-380d48520a83
dockerImageTag: 0.5.2-v1.0.4
dockerImageTag: 0.5.2-v1.0.5
dockerRepository: datapipes-airbyte/source-oracle
documentationUrl: https://docs.airbyte.com/integrations/sources/oracle
githubIssueLabel: source-oracle
Expand Down

0 comments on commit 3054e80

Please sign in to comment.