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)

task
Not set
normal

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');
a=morgamic
Assignee: server-ops → thardcastle
The branches table has changed to a view, so this will need different SQL.
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?
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.
morgamic?
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
Product: mozilla.org → mozilla.org Graveyard
You need to log in before you can comment on or make changes to this bug.