Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Fix regression in identifications view; #449
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Apr 14, 2013
1 parent 0756329 commit 2aa03ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions branch.sql
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ BEGIN;


CREATE VIEW current_identifications AS
SELECT DISTINCT ON (member, "group", identified_by) *
FROM identifications
SELECT DISTINCT ON (member, "group", identified_by) i.*
FROM identifications i
JOIN participants p ON p.username = identified_by
WHERE p.is_suspicious IS FALSE
ORDER BY member
Expand Down

0 comments on commit 2aa03ab

Please sign in to comment.