Skip to content

Commit c9cda4a

Browse files
committed
Fixed oracle jdbc adapter for MetaDataUtils
1 parent 8f40f08 commit c9cda4a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

fj-core/src/main/java/org/fugerit/java/core/db/metadata/MetaDataUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)