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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prostgles-server",
3
- "version": "4.1.41",
3
+ "version": "4.1.42",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1 +1 @@
1
- 162005
1
+ 7380
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "../..": {
23
23
  "name": "prostgles-server",
24
- "version": "4.1.40",
24
+ "version": "4.1.41",
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
27
  "@types/express": "^4.17.13",