Fix a null handling issue for system test derivation comparison
This commit is contained in:
parent
f47d337a72
commit
0175914f79
1 changed files with 6 additions and 2 deletions
|
|
@ -1095,8 +1095,12 @@ ORDER BY coalesce(base_system_tests.name, target_system_tests.name) ASC"))
|
|||
(string=? base_derivation_file_name
|
||||
target_derivation_file_name))
|
||||
base_derivation_file_name
|
||||
`((base . ,base_derivation_file_name)
|
||||
(target . ,target_derivation_file_name))))
|
||||
`((base . ,(if (null? base_derivation_file_name)
|
||||
'null
|
||||
base_derivation_file_name))
|
||||
(target . ,(if (null? target_derivation_file_name)
|
||||
'null
|
||||
target_derivation_file_name)))))
|
||||
(location . ,(if
|
||||
(and (string? base_file)
|
||||
(string? target_file)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue