prostgles-server 4.1.41 → 4.1.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.
|
@@ -134,7 +134,7 @@ async function getTablesForSchemaPostgresSQL({ db, runSQL }, schema) {
|
|
|
134
134
|
LEFT JOIN pg_attribute c2
|
|
135
135
|
ON c2.attrelid = c.confrelid and ARRAY[c2.attnum] <@ c.confkey
|
|
136
136
|
WHERE contype = 'f'
|
|
137
|
-
GROUP BY conrelid, pc.escaped_identifier
|
|
137
|
+
GROUP BY conrelid, conname, pc.escaped_identifier
|
|
138
138
|
)
|
|
139
139
|
SELECT * FROM fk
|
|
140
140
|
`, { schemaNames });
|
|
@@ -152,7 +152,7 @@ export async function getTablesForSchemaPostgresSQL(
|
|
|
152
152
|
LEFT JOIN pg_attribute c2
|
|
153
153
|
ON c2.attrelid = c.confrelid and ARRAY[c2.attnum] <@ c.confkey
|
|
154
154
|
WHERE contype = 'f'
|
|
155
|
-
GROUP BY conrelid, pc.escaped_identifier
|
|
155
|
+
GROUP BY conrelid, conname, pc.escaped_identifier
|
|
156
156
|
)
|
|
157
157
|
SELECT * FROM fk
|
|
158
158
|
`, { schemaNames });
|
package/package.json
CHANGED
package/tests/client/PID.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
7380
|