Last active
August 29, 2015 14:01
-
-
Save massahud/b7fd98dfeb5bdf54c83f to your computer and use it in GitHub Desktop.
Remove sonar duplicated last build
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update sonar.snapshots old_snap set old_snap.islast=0 | |
where islast=1 | |
and exists ( | |
select * from sonar.snapshots new_snap | |
where new_snap.created_at > old_snap.created_at | |
and new_snap.project_id = old_snap.project_id | |
and new_snap.islast=1 | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment