We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dba40c8 commit bf8c38dCopy full SHA for bf8c38d
src/org/ash/gui/MainFrame.java
@@ -337,7 +337,11 @@ private void initializeBerkeleyDatabaseAndLoading() {
337
Boolean ASHsupport = model.getASHsupport();
338
339
if (versionOracleDB.startsWith("11")) {
340
- this.database = new ASHDatabasePG10(this.model);
+ if(ASHsupport) {
341
+ this.database = new ASHDatabasePG10ASH(this.model);
342
+ } else {
343
+ this.database = new ASHDatabasePG10(this.model);
344
+ }
345
} else if (versionOracleDB.startsWith("10.")) {
346
if(ASHsupport) {
347
this.database = new ASHDatabasePG10ASH(this.model);
0 commit comments