@nsshunt/stsfhirpg 1.2.41 → 1.2.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs
CHANGED
|
@@ -7030,10 +7030,7 @@ var PGFhirAccessLayer = class extends tiny_emitter.TinyEmitter {
|
|
|
7030
7030
|
try {
|
|
7031
7031
|
for (const table of this._tables) await client.query(`
|
|
7032
7032
|
ALTER TABLE ${table}
|
|
7033
|
-
SET (
|
|
7034
|
-
autovacuum_enabled = false,
|
|
7035
|
-
autovacuum_analyze_enabled = false
|
|
7036
|
-
)
|
|
7033
|
+
SET (autovacuum_enabled = false)
|
|
7037
7034
|
`);
|
|
7038
7035
|
} catch (error) {
|
|
7039
7036
|
const message = `PGFhirAccessLayer:DisableAutoVacuum(): Query Error: [${error}]`;
|
|
@@ -7060,10 +7057,7 @@ var PGFhirAccessLayer = class extends tiny_emitter.TinyEmitter {
|
|
|
7060
7057
|
try {
|
|
7061
7058
|
for (const table of this._tables) await client.query(`
|
|
7062
7059
|
ALTER TABLE ${table}
|
|
7063
|
-
RESET (
|
|
7064
|
-
autovacuum_enabled,
|
|
7065
|
-
autovacuum_analyze_enabled
|
|
7066
|
-
)
|
|
7060
|
+
RESET (autovacuum_enabled)
|
|
7067
7061
|
`);
|
|
7068
7062
|
} catch (error) {
|
|
7069
7063
|
const message = `PGFhirAccessLayer:EnableAutoVacuum(): Query Error: [${error}]`;
|