* [bug#50111] [PATCH] cuirass: Allow filter-only searches.
@ 2021-08-18 17:37 Sarah Morgensen
2021-08-19 14:48 ` bug#50111: " Mathieu Othacehe
0 siblings, 1 reply; 2+ messages in thread
From: Sarah Morgensen @ 2021-08-18 17:37 UTC (permalink / raw)
To: 50111
If there are non-query search filters and there is no query, assume a
wildcard query.
* src/cuirass/database.scm (query->bind-arguments): Add a wildcard query
if there are other filters and no query.
---
Hello Guix,
I noticed that it's not possible to search on cuirass with only filters,
and no query. So this patch allows a filter-only search, without a query.
(After reading the code I realized I could use a SQL (!) wildcard "%", but
that's not even noted on the Cuirass website.)
I haven't tested this, of course, because I don't have a cuirass instance ;)
--
Sarah
src/cuirass/database.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/src/cuirass/database.scm b/src/cuirass/database.scm
index 0aa3f0b..2aa99a1 100644
--- a/src/cuirass/database.scm
+++ b/src/cuirass/database.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
;;; Copyright © 2018 Tatiana Sholokhova <tanja201396@gmail.com>
;;; Copyright © 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;;
;;; This file is part of Cuirass.
;;;
@@ -1060,7 +1061,11 @@ DELETE FROM Checkouts WHERE evaluation=" eval-id ";")))
(if (assq key acc)
acc
(cons (cons key #f) acc)))
- args '(#:spec #:system))))
+ (if (or (assq-ref args #:query)
+ (null? (alist-delete #:query args)))
+ args
+ (cons '(#:query . "%") args))
+ '(#:spec #:system))))
(define (db-get-build-products build-id)
"Return the build products associated to the given BUILD-ID."
--
2.31.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#50111: [PATCH] cuirass: Allow filter-only searches.
2021-08-18 17:37 [bug#50111] [PATCH] cuirass: Allow filter-only searches Sarah Morgensen
@ 2021-08-19 14:48 ` Mathieu Othacehe
0 siblings, 0 replies; 2+ messages in thread
From: Mathieu Othacehe @ 2021-08-19 14:48 UTC (permalink / raw)
To: Sarah Morgensen; +Cc: 50111-done
Hey,
Nice, applied as 082a477989cd6246a02c3e2ee661536ccc77cddb! I'll have to
update the Guix Cuirass package and deploy it on Berlin before we all
can enjoy this on https://ci.guix.gnu.org.
> I haven't tested this, of course, because I don't have a cuirass instance ;)
Note that running a small Cuirass instance using the dedicated Guix
service as described here[1] should be relatively easy if you want to
test further fixes :).
Thanks,
Mathieu
[1]: https://guix.gnu.org/manual/en/html_node/Continuous-Integration.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-08-19 14:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-18 17:37 [bug#50111] [PATCH] cuirass: Allow filter-only searches Sarah Morgensen
2021-08-19 14:48 ` bug#50111: " Mathieu Othacehe
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).