Merge lp://staging/~al-maisan/launchpad/bq-platform-columns-505725 into lp://staging/launchpad/db-devel
Proposed by
Muharem Hrnjadovic
Status: | Merged |
---|---|
Approved by: | Jonathan Lange |
Approved revision: | not available |
Merged at revision: | not available |
Proposed branch: | lp://staging/~al-maisan/launchpad/bq-platform-columns-505725 |
Merge into: | lp://staging/launchpad/db-devel |
Diff against target: |
198 lines (+96/-10) 8 files modified
database/sampledata/current-dev.sql (+2/-2) database/sampledata/current.sql (+2/-2) database/schema/comments.sql (+2/-0) database/schema/patch-2207-24-0.sql (+20/-0) lib/lp/soyuz/interfaces/buildqueue.py (+18/-5) lib/lp/soyuz/model/build.py (+2/-1) lib/lp/soyuz/model/buildqueue.py (+3/-0) lib/lp/soyuz/tests/test_buildqueue.py (+47/-0) |
To merge this branch: | bzr merge lp://staging/~al-maisan/launchpad/bq-platform-columns-505725 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Paul Hummer (community) | code | Approve | |
Jonathan Lange (community) | Approve | ||
Stuart Bishop (community) | db | Approve | |
Review via email: mp+17125@code.staging.launchpad.net |
To post a comment you must log in.
Hello there!
In order to be able to formulate reasonably straightforward queries that find
candidate jobs for idle builders we'd like to add NULLable 'processor' and
'virtualized' columns to BuildQueue.
In case of binary builds these will replicate the respective Build.processor virtualized values. For processor- independent jobs they will
and Build.is_
remain NULL.
Please note also that these columns will only be initialed once, when the
BuildQueue record is inserted.
Pre-implementation chat with jml. Bug #505725.