Fix a Squee null handling issue with latest fixed output derivations
This commit is contained in:
parent
ea7331ad25
commit
54c5fbe9fb
1 changed files with 3 additions and 3 deletions
|
|
@ -646,13 +646,13 @@ LIMIT $4"))
|
|||
(map (match-lambda
|
||||
((derivation_file_name latest_build)
|
||||
`((derivation_file_name . ,derivation_file_name)
|
||||
(latest_build . ,(if latest_build
|
||||
(latest_build . ,(if (null? latest_build)
|
||||
'null
|
||||
(map (match-lambda
|
||||
((key . value)
|
||||
(cons (string->symbol key)
|
||||
value)))
|
||||
(json-string->scm latest_build))
|
||||
'null)))))
|
||||
(json-string->scm latest_build)))))))
|
||||
(exec-query-with-null-handling
|
||||
conn
|
||||
query
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue