Skip to content

Commit

Permalink
[#1931] Implement InformationExtractorJdbcDatabaseMetaDataImpl#proces…
Browse files Browse the repository at this point in the history
…sCrossreferenceResultSet
  • Loading branch information
dreab8 committed Feb 5, 2025
1 parent 42d5c04 commit 820c8ad
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,16 @@ protected <T> T processCrossReferenceResultSet(
String foreignCatalog,
String foreignSchema,
String foreignTable,
ExtractionContext.ResultSetProcessor<T> processor) {
ExtractionContext.ResultSetProcessor<T> processor)
throws SQLException {
// This method has been added as fix for https://hibernate.atlassian.net/browse/HHH-18221
// The issue is only for Informix that we don't currently support.
throw LOG.notYetImplemented();
try ( ResultSet resultSet =
getExtractionContext()
.getJdbcDatabaseMetaData()
.getCrossReference( parentCatalog, parentSchema, parentTable, foreignCatalog, foreignSchema, foreignTable) ) {
return processor.process( resultSet );
}
}

@Override
Expand Down

0 comments on commit 820c8ad

Please sign in to comment.