Merge lp:~al-maisan/launchpad/bq-platform-columns-505725 into lp:launchpad/db-devel
Proposed by
Muharem Hrnjadovic
on 2010-01-11
| Status: | Merged |
|---|---|
| Approved by: | Jonathan Lange on 2010-01-11 |
| Approved revision: | not available |
| Merged at revision: | not available |
| Proposed branch: | lp:~al-maisan/launchpad/bq-platform-columns-505725 |
| Merge into: | lp: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:~al-maisan/launchpad/bq-platform-columns-505725 |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Paul Hummer (community) | code | Approve on 2010-01-11 | |
| Jonathan Lange (community) | 2010-01-11 | Approve on 2010-01-11 | |
| Stuart Bishop | db | 2010-01-11 | Approve on 2010-01-11 |
|
Review via email:
|
|||
To post a comment you must log in.
| Muharem Hrnjadovic (al-maisan) wrote : | # |
| Paul Hummer (rockstar) wrote : | # |
Please add whitespace around the test's "layer =..." line. Other than that, it looks good.
review:
Approve
(code)

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.