@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.mjs
CHANGED
|
@@ -7003,10 +7003,7 @@ var PGFhirAccessLayer = class extends TinyEmitter {
|
|
|
7003
7003
|
try {
|
|
7004
7004
|
for (const table of this._tables) await client.query(`
|
|
7005
7005
|
ALTER TABLE ${table}
|
|
7006
|
-
SET (
|
|
7007
|
-
autovacuum_enabled = false,
|
|
7008
|
-
autovacuum_analyze_enabled = false
|
|
7009
|
-
)
|
|
7006
|
+
SET (autovacuum_enabled = false)
|
|
7010
7007
|
`);
|
|
7011
7008
|
} catch (error) {
|
|
7012
7009
|
const message = `PGFhirAccessLayer:DisableAutoVacuum(): Query Error: [${error}]`;
|
|
@@ -7033,10 +7030,7 @@ var PGFhirAccessLayer = class extends TinyEmitter {
|
|
|
7033
7030
|
try {
|
|
7034
7031
|
for (const table of this._tables) await client.query(`
|
|
7035
7032
|
ALTER TABLE ${table}
|
|
7036
|
-
RESET (
|
|
7037
|
-
autovacuum_enabled,
|
|
7038
|
-
autovacuum_analyze_enabled
|
|
7039
|
-
)
|
|
7033
|
+
RESET (autovacuum_enabled)
|
|
7040
7034
|
`);
|
|
7041
7035
|
} catch (error) {
|
|
7042
7036
|
const message = `PGFhirAccessLayer:EnableAutoVacuum(): Query Error: [${error}]`;
|