File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/org/utplsql/api/compatibility Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ public CompatibilityProxy(Connection conn) throws SQLException {
3737
3838 @ Deprecated
3939 public CompatibilityProxy (Connection conn , boolean skipCompatibilityCheck ) throws SQLException {
40- this (conn , Version . LATEST );
40+ this (conn , skipCompatibilityCheck , null );
4141 }
4242
4343 @ Deprecated
4444 public CompatibilityProxy (Connection conn , boolean skipCompatibilityCheck , @ Nullable DatabaseInformation databaseInformation ) throws SQLException {
45- this (conn , Version .LATEST , databaseInformation );
45+ this (conn , skipCompatibilityCheck ? Version .LATEST : null , databaseInformation );
4646 }
4747
4848 public CompatibilityProxy (Connection conn , @ Nullable DatabaseInformation databaseInformation ) throws SQLException {
@@ -157,7 +157,7 @@ public Version getUtPlsqlVersion() {
157157
158158 public String getVersionDescription () {
159159 if ( utPlsqlVersion != realDbPlsqlVersion ) {
160- return realDbPlsqlVersion .toString () + " (Assumed: " + utPlsqlVersion .toString ();
160+ return realDbPlsqlVersion .toString () + " (Assumed: " + utPlsqlVersion .toString () + ")" ;
161161 } else {
162162 return utPlsqlVersion .toString ();
163163 }
You can’t perform that action at this time.
0 commit comments