Skip to content

Commit 97f8a65

Browse files
committed
Fix query
1 parent 9f79cae commit 97f8a65

File tree

1 file changed

+9
-9
lines changed
  • services/apps/script_executor_worker/src/activities/fix-foreign-keys

1 file changed

+9
-9
lines changed

services/apps/script_executor_worker/src/activities/fix-foreign-keys/index.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ interface MergedOrganization {
1111

1212
async function getMergedOrganizations(pgQx: QueryExecutor): Promise<MergedOrganization[]> {
1313
return pgQx.select(`
14-
SELECT ma."secondaryId", ma."primaryId"
14+
SELECT "secondaryId", "primaryId"
1515
FROM (
16-
SELECT DISTINCT ON ("secondaryId") "secondaryId", "primaryId", "createdAt"
17-
FROM "mergeActions"
18-
WHERE type = 'organization' AND state = 'merged'
19-
ORDER BY "secondaryId", "createdAt" DESC
20-
) ma
16+
SELECT DISTINCT ON ("secondaryId") "secondaryId", "primaryId"
17+
FROM "mergeActions"
18+
WHERE type = 'org' AND state = 'merged'
19+
ORDER BY "secondaryId", "createdAt" DESC
20+
) latest_merges
2121
WHERE NOT EXISTS (
22-
SELECT 1
23-
FROM organizations
24-
WHERE organizations.id = ma."secondaryId"
22+
SELECT 1
23+
FROM organizations
24+
WHERE organizations.id = latest_merges."secondaryId"
2525
);
2626
`)
2727
}

0 commit comments

Comments
 (0)