Skip to content
Snippets Groups Projects
Unverified Commit 53d8b66b authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

database: Fix regression.

Fix a regression introduced by cbc46267.

* src/cuirass/database.scm (db-get-builds): Collect BuildProducts id field.
parent 508ed333
No related branches found
No related tags found
No related merge requests found
......@@ -997,7 +997,7 @@ FROM
(SELECT B.id, B.derivation, B.name,
string_agg(Outputs.name, ',') AS outputs_name,
string_agg(Outputs.path, ',') AS outputs_path,
string_agg(cast(BP.build AS text), ',') AS bp_build,
string_agg(cast(BP.id AS text), ',') AS bp_build,
string_agg(BP.type, ',') AS bp_type,
string_agg(cast(BP.file_size AS text), ',') AS bp_file_size,
string_agg(BP.checksum, ',') AS bp_checksum,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment