Skip to content

Commit

Permalink
MetaDataUtils.createModel with JdbcAdaptor is now public
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Jul 18, 2024
1 parent 7ce3b39 commit 2509c9f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- MetaDataUtils.createModel with JdbcAdaptor is now public

## [8.6.2] - 2024-05-20

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private static int handleDriverInfo( DataBaseModel dataBaseModel, MetaDataUtilsC
return mode;
}

private static DataBaseModel createModel( ConnectionFactory cf, String catalog, String schema, JdbcAdaptor jdbcAdaptor, List<String> tableNameList, String[] types ) throws DAOException {
public static DataBaseModel createModel( ConnectionFactory cf, String catalog, String schema, JdbcAdaptor jdbcAdaptor, List<String> tableNameList, String[] types ) throws DAOException {
return createModel( new MetaDataUtilsContext(cf, catalog, schema, jdbcAdaptor, tableNameList, types) );
}

Expand Down

0 comments on commit 2509c9f

Please sign in to comment.