Closed
Bug 515824
Opened 16 years ago
Closed 16 years ago
Add SeaMonkey 2.0b2 and 2.0pre to crash-stats.m.c
Categories
(mozilla.org Graveyard :: Server Operations, task)
mozilla.org Graveyard
Server Operations
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: kairo, Assigned: chizu)
References
Details
SeaMonkey is about to release 2.0b2 and the 1.9.1-based builds have been changed to 2.0pre, so those versions should be added to crash-stats.m.c for people to search for them.
SQL statements:
insert into branches(product,version,branch)
values('SeaMonkey','2.0b2','1.9.1');
insert into branches(product,version,branch)
values('SeaMonkey','2.0pre','1.9.1');
Comment 1•16 years ago
|
||
a=morgamic
The branches table has changed to a view, so this will need different SQL.
| Reporter | ||
Comment 3•16 years ago
|
||
so what SQL do we need now?
I think this is it:
insert into productdims(product,version,branch,release)
values('SeaMonkey','2.0b2','1.9.1','development');
insert into productdims(product,version,branch,release)
values('SeaMonkey','2.0pre','1.9.1','development');
Values already in the table for release are 'development', 'milestone', 'major'. I picked development based on the existing rows.
morgamic, re-approve?
| Reporter | ||
Comment 5•16 years ago
|
||
I'm not sure what the release values actually mean - if 'milestone' is alpha/beta then 2.0b2 is probably that, same for the other ones without 'pre'. I'd be assuming that 'major' would mean stable releases, then, where 2.0 will be the first one from us to qualify.
Comment 6•16 years ago
|
||
morgamic?
Comment 7•16 years ago
|
||
Looks good
breakpad=# select * from productdims where product='SeaMonkey' AND version='2.0b2';
id | product | version | branch | release
----+---------+---------+--------+---------
(0 rows)
breakpad=# select * from productdims where product='SeaMonkey' AND version='2.0pre';
id | product | version | branch | release
----+-----------+---------+--------+-------------
81 | SeaMonkey | 2.0pre | 1.9.1 | development
(1 row)
breakpad=# insert into productdims(product,version,branch,release)
breakpad-# values('SeaMonkey','2.0b2','1.9.1','development');
INSERT 0 1
Status: NEW → RESOLVED
Closed: 16 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
•