guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: Remove duplicate AND from delete-from-git-commits


From: Christopher Baines
Subject: branch master updated: Remove duplicate AND from delete-from-git-commits query
Date: Thu, 16 Jun 2022 07:26:48 -0400

This is an automated email from the git hooks/post-receive script.

cbaines pushed a commit to branch master
in repository data-service.

The following commit(s) were added to refs/heads/master by this push:
     new 71aaf10  Remove duplicate AND from delete-from-git-commits query
71aaf10 is described below

commit 71aaf1016b0298cdbece3968201e056aa09d9a3f
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Thu Jun 16 12:25:47 2022 +0100

    Remove duplicate AND from delete-from-git-commits query
---
 guix-data-service/data-deletion.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix-data-service/data-deletion.scm 
b/guix-data-service/data-deletion.scm
index 2e7af48..6a189ca 100644
--- a/guix-data-service/data-deletion.scm
+++ b/guix-data-service/data-deletion.scm
@@ -191,7 +191,7 @@ WHERE id IN (
   INNER JOIN git_branches
     ON git_branches.id = git_commits.git_branch_id
   WHERE git_branches.git_repository_id = ~A
-    AND git_branches.name = '~A' AND
+    AND git_branches.name = '~A'
     AND git_commits.commit IN (~A)
 )"
       git-repository-id



reply via email to

[Prev in Thread] Current Thread [Next in Thread]