We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 219fd31 + e3d4614 commit f9baeb3Copy full SHA for f9baeb3
src/connection/manager.ts
@@ -30,7 +30,7 @@ export class SQLJobManager {
30
const config = instance.getConfig();
31
32
const newJob = predefinedJob || (new OldSQLJob({
33
- libraries: [config.currentLibrary, ...config.libraryList],
+ libraries: [config.currentLibrary, ...config.libraryList.filter((item) => item != config.currentLibrary)],
34
naming: `system`,
35
"full open": false,
36
"transaction isolation": "none",
@@ -161,4 +161,4 @@ export class SQLJobManager {
161
static getSelfDefault(): SelfValue {
162
return Configuration.get<SelfValue>(`jobSelfDefault`) || `*NONE`;
163
}
164
-}
+}
0 commit comments