File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
fj-core/src/main/java/org/fugerit/java/core/db/metadata Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ### Fixed
11+
12+ - Fixed oracle jdbc adapter for MetaDataUtils
13+
1014## [ 8.6.3] - 2024-07-18
1115
1216### Fixed
Original file line number Diff line number Diff line change @@ -438,7 +438,7 @@ class OracleJdbcAdaptor extends DefaulJdbcdaptor {
438438 */
439439 public OracleJdbcAdaptor (ConnectionFactory connectionFactory ) {
440440 super (connectionFactory , OracleJdbcAdaptor .class .getSimpleName (),
441- "SELECT comments FROM all_col_comments WHERE OWNER=? AND table_name=? AND column_name=?" ,
441+ "SELECT comments FROM all_col_comments WHERE OWNER=? AND table_name=?" ,
442442 "SELECT comments FROM all_col_comments WHERE OWNER=? AND table_name=? AND column_name=?" );
443443 }
444444
You can’t perform that action at this time.
0 commit comments