Add checks to guard against null data
Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
f67bea719d
commit
b8abe38352
2 changed files with 29 additions and 23 deletions
|
|
@ -36,6 +36,8 @@
|
|||
(define (insert-guix-revision-lint-warnings conn
|
||||
guix-revision-id
|
||||
lint-warning-ids)
|
||||
(if (null? lint-warning-ids)
|
||||
'()
|
||||
(exec-query
|
||||
conn
|
||||
(string-append
|
||||
|
|
@ -49,7 +51,7 @@
|
|||
lint-warning-id
|
||||
guix-revision-id))
|
||||
lint-warning-ids)
|
||||
", "))))
|
||||
", ")))))
|
||||
|
||||
(define* (lint-warnings-for-guix-revision conn commit-hash
|
||||
#:key
|
||||
|
|
|
|||
|
|
@ -317,10 +317,12 @@ WHERE table_name = $1"
|
|||
"ANALYZE " temp-table-name))
|
||||
|
||||
;; Populate the temporary table
|
||||
(if (null? data)
|
||||
'()
|
||||
(with-time-logging (string-append "populating " temp-table-name)
|
||||
(exec-query conn
|
||||
(insert-sql data
|
||||
#:table-name temp-table-name)))
|
||||
#:table-name temp-table-name))))
|
||||
;; Use the temporary table to find the existing values
|
||||
(let ((result
|
||||
(with-time-logging
|
||||
|
|
@ -336,11 +338,13 @@ WHERE table_name = $1"
|
|||
result))
|
||||
|
||||
;; If not using a temporary table, just do a single SELECT query
|
||||
(if (null? data)
|
||||
'()
|
||||
(exec-query->vhash conn
|
||||
select-query
|
||||
cdr
|
||||
(lambda (result)
|
||||
(string->number (first result))))))
|
||||
(string->number (first result)))))))
|
||||
(missing-entries
|
||||
(filter (lambda (field-values)
|
||||
(not (vhash-assoc
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue