Closed
Bug 525957
Opened 15 years ago
Closed 15 years ago
Add entries for firefox 3.5.5 to socorro
Categories
(mozilla.org Graveyard :: Server Operations, task, P1)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: catlee, Assigned: aravind)
References
Details
insert into productdims (product, version, branch, release) values ('Firefox','3.5.5', '1.9.1', 'major');
insert into productdims (product, version, branch, release) values ('Firefox','3.5.6pre', '1.9.1', 'development');
Assignee | ||
Updated•15 years ago
|
Assignee: server-ops → aravind
Assignee | ||
Comment 1•15 years ago
|
||
Need morgamic to approve any/all prod sql.
Reporter | ||
Updated•15 years ago
|
Severity: major → critical
Priority: -- → P1
Comment 2•15 years ago
|
||
They are missing the product visibility table -- can you guys add the SQL for that?
Comment 3•15 years ago
|
||
It would be better if they provide the start and end dates that define the time window when materialized views should be collected. Or I could guess...
Comment 4•15 years ago
|
||
Start date is today. We don't have an end date yet.
Comment 5•15 years ago
|
||
In addition to the sql in the initial bug, do this, per the information at http://code.google.com/p/socorro/wiki/TrackNewProductVersion. I am assuming that 90 days is correct. Alterations can be made later, if needed
INSERT INTO product_visibility (productdims_id,start_date,end_date)
SELECT id, '2009-11-05' as start_date, '2010-02-03' as end_date
FROM productdims
WHERE product = 'Firefox' AND version = '3.5.5';
INSERT INTO product_visibility (productdims_id,start_date,end_date)
SELECT id, '2009-11-05' as start_date, '2010-02-03' as end_date
FROM productdims
WHERE product = 'Firefox' AND version = '3.5.6pre';
Comment 6•15 years ago
|
||
Looks good. Thanks, Frank.
Comment 7•15 years ago
|
||
Anything holding this bug up ?
Comment 8•15 years ago
|
||
Nope, IT just needs to run it.
Assignee | ||
Comment 9•15 years ago
|
||
All done.
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Product: mozilla.org → mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•