pgpm 4.3.1 → 4.4.0
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/commands/dump.js +5 -5
- package/esm/commands/dump.js +1 -1
- package/package.json +3 -2
package/commands/dump.js
CHANGED
|
@@ -9,7 +9,7 @@ const pg_cache_1 = require("pg-cache");
|
|
|
9
9
|
const child_process_1 = require("child_process");
|
|
10
10
|
const fs_1 = __importDefault(require("fs"));
|
|
11
11
|
const path_1 = __importDefault(require("path"));
|
|
12
|
-
const
|
|
12
|
+
const quotes_1 = require("@pgsql/quotes");
|
|
13
13
|
const utils_1 = require("../utils");
|
|
14
14
|
const log = new logger_1.Logger('dump');
|
|
15
15
|
const dumpUsageText = `
|
|
@@ -95,14 +95,14 @@ async function buildPruneSql(dbname, databaseId) {
|
|
|
95
95
|
const schema = String(row.table_schema);
|
|
96
96
|
const table = String(row.table_name);
|
|
97
97
|
// Use QuoteUtils for robust identifier quoting
|
|
98
|
-
const qualified =
|
|
98
|
+
const qualified = quotes_1.QuoteUtils.quoteQualifiedIdentifier(schema, table);
|
|
99
99
|
// Use formatEString to safely escape the UUID/string literal
|
|
100
|
-
const dbIdLiteral =
|
|
100
|
+
const dbIdLiteral = quotes_1.QuoteUtils.formatEString(databaseId);
|
|
101
101
|
lines.push(`delete from ${qualified} where database_id <> ${dbIdLiteral};`);
|
|
102
102
|
}
|
|
103
103
|
// Handle metaschema_public.database deletion
|
|
104
|
-
const metaschemaDb =
|
|
105
|
-
const dbIdLiteral =
|
|
104
|
+
const metaschemaDb = quotes_1.QuoteUtils.quoteQualifiedIdentifier('metaschema_public', 'database');
|
|
105
|
+
const dbIdLiteral = quotes_1.QuoteUtils.formatEString(databaseId);
|
|
106
106
|
lines.push(`delete from ${metaschemaDb} where id <> ${dbIdLiteral};`);
|
|
107
107
|
lines.push('set session_replication_role = origin;');
|
|
108
108
|
lines.push('do $$ begin');
|
package/esm/commands/dump.js
CHANGED
|
@@ -4,7 +4,7 @@ import { getPgPool } from 'pg-cache';
|
|
|
4
4
|
import { spawn } from 'child_process';
|
|
5
5
|
import fs from 'fs';
|
|
6
6
|
import path from 'path';
|
|
7
|
-
import { QuoteUtils } from 'pgsql
|
|
7
|
+
import { QuoteUtils } from '@pgsql/quotes';
|
|
8
8
|
import { getTargetDatabase } from '../utils';
|
|
9
9
|
const log = new Logger('dump');
|
|
10
10
|
const dumpUsageText = `
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgpm",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "PostgreSQL Package Manager - Database migration and package management CLI",
|
|
6
6
|
"main": "index.js",
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"@pgpmjs/env": "^2.13.0",
|
|
51
51
|
"@pgpmjs/logger": "^2.2.0",
|
|
52
52
|
"@pgpmjs/types": "^2.17.0",
|
|
53
|
+
"@pgsql/quotes": "^17.1.0",
|
|
53
54
|
"appstash": "^0.3.0",
|
|
54
55
|
"find-and-require-package-json": "^0.9.0",
|
|
55
56
|
"genomic": "^5.3.5",
|
|
@@ -74,5 +75,5 @@
|
|
|
74
75
|
"pg",
|
|
75
76
|
"pgsql"
|
|
76
77
|
],
|
|
77
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "16e3a687cf1d629d1eff1a9146e71bec14796196"
|
|
78
79
|
}
|