All SQL is prefixed with this comment, time_zone set to +00:00 to help with time math

20:07:57 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

     SET TIME_ZONE='+00:00'

 

Get time from database perspective (in case the clocks are skewed)

20:07:57 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT

         UNIX_TIMESTAMP(now()) `value`

 

Separate thread interested in the current time

20:08:05 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT

         UNIX_TIMESTAMP(now()) `value`

 

Convert time to string, for use in all other queries (the start time)

20:08:05 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT

         CAST(CONVERT_TZ(FROM_UNIXTIME(0/1000), 'UTC', 'US/Pacific') AS CHAR) `value`

 

20:08:05 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

     SELECT max(bug_id)+1 bug_id FROM bugs

20:08:05 - Alias analysis skipped (--quick was used)

20:08:05 - Timer start: time to get bug list

 

 

An example of the datetime string

20:08:05 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT

         b.bug_id

     FROM

         bugs b

     LEFT JOIN

         bug_group_map m ON m.bug_id=b.bug_id

     WHERE

         delta_ts >= '1970-01-01 00:00:00' AND

         (0 <= b.bug_id AND b.bug_id < 1000) AND

         m.bug_id IS NULL

 

20:08:06 - Timer end  : time to get bug list (took 0.936 sec)

20:08:06 - Read comments from database

Thread responsible for comments etl: grab all comments on non-private bugs in the first block (1000 in a block)

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT

         c.comment_id,

         c.bug_id,

         p.login_name modified_by,

         UNIX_TIMESTAMP(CONVERT_TZ(bug_when, 'US/Pacific','UTC'))*1000 AS modified_ts,

         c.thetext comment,

         c.isprivate

     FROM

         longdescs c

     LEFT JOIN

         profiles p ON c.who = p.userid

     WHERE

         (`bug_id` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`bug_id` BETWEEN 213 AND 361)) OR ((`bug_id` BETWEEN 507 AND 999)))) AND

         bug_when >= '1970-01-01 00:00:00' AND

         isprivate=0

 

Main ETL looks to see what columns are in the bugs table

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT

         column_name,

         column_type

     FROM

         information_schema.columns

     WHERE

         table_schema='bugzilla4' AND

         table_name='bugs' AND

         column_name NOT IN (

             'bug_id',       #EXPLICIT

             'delta_ts',     #NOT NEEDED

             'lastdiffed',   #NOT NEEDED

             'creation_ts',  #EXPLICIT

             'reporter',     #EXPLICIT

             'assigned_to',  #EXPLICIT

             'qa_contact',   #EXPLICIT

             'product_id',   #EXPLICIT

             'component_id', #EXPLICIT

             'cclist_accessible',    #NOT NEEDED

             'reporter_accessible',  #NOT NEEDED

             'short_desc',           #NOT ALLOWED

             'bug_file_loc',         #NOT ALLOWED

             'deadline',             #NOT NEEDED

             'estimated_time'       #NOT NEEDED

    

         )

 

Separate threads (and connections) are used to extract from bugzilla tables.  These 10 SQL are listed in some random order:

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT bug_id

         , UNIX_TIMESTAMP(CONVERT_TZ(f.creation_date, 'US/Pacific','UTC'))*1000 AS modified_ts

         , ps.login_name AS modified_by

         , 'flagtypes_name' AS field_name

         , CONCAT(ft.`name`,status,IF(requestee_id IS NULL,'',CONCAT('(',pr.login_name,')'))) AS new_value

         , CAST(null AS char(255)) AS old_value

         , attach_id

         , 8 AS _merge_order

     FROM

         flags f

     JOIN `flagtypes` ft ON f.type_id = ft.id

     JOIN profiles ps ON f.setter_id = ps.userid

     LEFT JOIN profiles pr ON f.requestee_id = pr.userid

     WHERE

         (`bug_id` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`bug_id` BETWEEN 213 AND 361)) OR ((`bug_id` BETWEEN 507 AND 999))))

     ORDER BY

         bug_id

 

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT blocked AS bug_id

         , CAST(null AS signed) AS modified_ts

         , CAST(null AS char(255)) AS modified_by

         , 'dependson' AS field_name

         , CAST(dependson AS SIGNED) AS new_value

         , CAST(null AS SIGNED) AS old_value

         , CAST(null AS signed) AS attach_id

         , 2 AS _merge_order

     FROM dependencies d

     WHERE

        (`blocked` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`blocked` BETWEEN 213 AND 361)) OR ((`blocked` BETWEEN 507 AND 999))))

     UNION

     SELECT dependson dependson

         , null

         , null

         , 'blocked'

         , CAST(blocked AS SIGNED)

         , null

         , null

         , 2

     FROM dependencies d

     WHERE

         (`dependson` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`dependson` BETWEEN 213 AND 361)) OR ((`dependson` BETWEEN 507 AND 999))))

     ORDER BY bug_id

 

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT bug_id

         , CAST(null AS signed) AS modified_ts

         , CAST(null AS char(255)) AS modified_by

         , 'see_also' AS field_name

         , CAST(`value` AS char(255)) AS new_value

         , CAST(null AS char(255)) AS old_value

         , CAST(null AS signed) AS attach_id

         , 2 AS _merge_order

     FROM bug_see_also

     WHERE

         (`bug_id` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`bug_id` BETWEEN 213 AND 361)) OR ((`bug_id` BETWEEN 507 AND 999))))

     ORDER BY bug_id

 

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT

         a.bug_id,

         UNIX_TIMESTAMP(CONVERT_TZ(bug_when, 'US/Pacific','UTC'))*1000 AS modified_ts,

         lower(login_name) AS modified_by,

         replace(field.`name`, '.', '_') AS field_name,

         lower(CAST(

             CASE

             WHEN a.fieldid IN (-1) THEN '<screened>'

             WHEN trim(added)='' THEN NULL

             ELSE trim(added)

             END AS CHAR CHARACTER SET utf8

         )) AS new_value,

         lower(CAST(

             CASE

             WHEN a.fieldid IN (-1) THEN '<screened>'

             WHEN trim(removed)='' THEN NULL

             ELSE trim(removed)

             END AS CHAR CHARACTER SET utf8

         )) AS old_value,

         attach_id,

         9 AS _merge_order

     FROM

         bugs_activity a

     JOIN

         profiles p ON a.who = p.userid

     JOIN

         fielddefs field ON a.fieldid = field.`id`

     WHERE

         (`a`.`bug_id` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`a`.`bug_id` BETWEEN 213 AND 361)) OR ((`a`.`bug_id` BETWEEN 507 AND 999)))) AND

         bug_when >= '1970-01-01 00:00:00'

     ORDER BY

         bug_id,

         bug_when DESC,

         attach_id

 

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT bug_id

         , UNIX_TIMESTAMP(CONVERT_TZ(a.creation_ts, 'US/Pacific','UTC'))*1000 AS modified_ts

         , lower(login_name) AS modified_by

         , UNIX_TIMESTAMP(CONVERT_TZ(a.creation_ts, 'US/Pacific','UTC'))*1000 AS created_ts

         , login_name AS created_by

         , ispatch AS 'attachments_ispatch'

         , isobsolete AS 'attachments_isobsolete'

         , isprivate AS 'attachments_isprivate'

         , attach_id

     FROM

         attachments a

         JOIN profiles p ON a.submitter_id = p.userid

     WHERE

         (`bug_id` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`bug_id` BETWEEN 213 AND 361)) OR ((`bug_id` BETWEEN 507 AND 999)))) AND

         isprivate=0

     ORDER BY

         bug_id,

         attach_id,

         a.creation_ts

 

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT bug_id

         , NULL AS modified_ts

         , NULL AS modified_by

         , 'keywords' AS field_name

         , lower(kd.name) AS new_value

         , NULL AS old_value

         , NULL AS attach_id

         , 2 AS _merge_order

     FROM keywords k

     JOIN keyworddefs kd ON k.keywordid = kd.id

     WHERE

         (`bug_id` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`bug_id` BETWEEN 213 AND 361)) OR ((`bug_id` BETWEEN 507 AND 999))))

     ORDER BY bug_id

 

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT bug_id

         , CAST(null AS signed) AS modified_ts

         , CAST(null AS char(255)) AS modified_by

         , 'cc' AS field_name

         , lower(CAST(p.login_name AS char(255))) AS new_value

         , CAST(null AS char(255)) AS old_value

         , CAST(null AS signed) AS attach_id

         , 2 AS _merge_order

     FROM

         cc

     JOIN

         profiles p ON cc.who = p.userid

     WHERE

         (`bug_id` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`bug_id` BETWEEN 213 AND 361)) OR ((`bug_id` BETWEEN 507 AND 999))))

 

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT bug_id

         , CAST(null AS signed) AS modified_ts

         , CAST(null AS char(255)) AS modified_by

         , 'bug_group' AS field_name

         , lower(CAST(g.`name` AS char(255))) AS new_value

         , CAST(null AS char(255)) AS old_value

         , CAST(null AS signed) AS attach_id

         , 2 AS _merge_order

     FROM bug_group_map bg

     JOIN groups g ON bg.group_id = g.id

     WHERE

         (`bug_id` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`bug_id` BETWEEN 213 AND 361)) OR ((`bug_id` BETWEEN 507 AND 999))))

 

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

                 SELECT

                     bug_id,

                     UNIX_TIMESTAMP(CONVERT_TZ(b.creation_ts, 'US/Pacific','UTC'))*1000 AS modified_ts,

                     lower(pr.login_name) AS modified_by,

                     UNIX_TIMESTAMP(CONVERT_TZ(b.creation_ts, 'US/Pacific','UTC'))*1000 AS created_ts,

                     lower(pr.login_name) AS created_by,

                     lower(pa.login_name) AS assigned_to,

                     lower(pq.login_name) AS qa_contact,

                     lower(prod.`name`) AS product,

                     lower(comp.`name`) AS component,

                    

                     short_desc,

                     bug_file_loc

                 ,

                     lower(`bug_severity`) `bug_severity`,

     lower(`bug_status`) `bug_status`,

     lower(`op_sys`) `op_sys`,

     lower(`priority`) `priority`,

     lower(`rep_platform`) `rep_platform`,

     lower(`version`) `version`,

     lower(`resolution`) `resolution`,

     lower(`target_milestone`) `target_milestone`,

     `status_whiteboard`,

     `votes`,

     `everconfirmed`,

     lower(`alias`) `alias`,

     `remaining_time`,

     lower(`cf_colo_site`) `cf_colo_site`,

     `cf_crash_signature`,

     lower(`cf_office`) `cf_office`,

     `cf_due_date`,

     `cf_last_resolved`,

     `cf_shadow_bug`,

     `restrict_comments`

                 FROM bugs b

                     LEFT JOIN profiles pr ON b.reporter = pr.userid

                     LEFT JOIN profiles pa ON b.assigned_to = pa.userid

                     LEFT JOIN profiles pq ON b.qa_contact = pq.userid

                     LEFT JOIN products prod ON prod.id = product_id

                     LEFT JOIN components comp ON comp.id = component_id

                 WHERE

                     (`bug_id` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`bug_id` BETWEEN 213 AND 361)) OR ((`bug_id` BETWEEN 507 AND 999))))

           

20:08:06 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT dupe AS bug_id

         , CAST(null AS signed) AS modified_ts

         , CAST(null AS char(255)) AS modified_by

         , 'dupe_of' AS field_name

         , CAST(dupe_of AS SIGNED) AS new_value

         , CAST(null AS SIGNED) AS old_value

         , CAST(null AS signed) AS attach_id

         , 2 AS _merge_order

     FROM duplicates d

     WHERE

         (`dupe` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`dupe` BETWEEN 213 AND 361)) OR ((`dupe` BETWEEN 507 AND 999))))

     UNION

     SELECT dupe_of

         , null

         , null

         , 'dupe_by'

         , CAST(dupe AS SIGNED)

         , null

         , null

         , 2

     FROM duplicates d

     WHERE

         (`dupe_of` in (35, 36, 37, 38, 39, 41, 42, 43, 51, 61, 62, 63, 71, 81, 82, 91, 92, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 163, 173, 174, 175, 176, 177, 178, 183, 184, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 369, 370, 371, 372, 373, 374, 375, 381, 382, 383, 384, 385, 386, 387, 388, 389, 399, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 487, 488, 489, 490, 491, 492, 497) OR (((`dupe_of` BETWEEN 213 AND 361)) OR ((`dupe_of` BETWEEN 507 AND 999))))

     ORDER BY bug_id

 

The main thread now waits for all the workers to be done reading resultsets

 

20:08:11 - Waiting on thread etl comments

20:08:12 - Waiting on thread process

20:08:16 - Waiting on thread etl comments

20:08:17 - Waiting on thread process

20:08:21 - Waiting on thread etl comments

20:08:22 - Waiting on thread process

20:08:26 - Waiting on thread etl comments

20:08:27 - Waiting on thread process

20:08:31 - Waiting on thread etl comments

20:08:32 - Waiting on thread process

20:08:36 - Waiting on thread etl comments

ETL starts (comments etl is still running in background)

20:08:37 - 6235 aliases loaded

20:08:40 - Using bzAliases to match change 'review?(wtchang@redhat.com)' to 'review?(wtc@google.com)'

20:08:40 - Matched added flag {

    "modified_by": "wtc@google.com",

    "modified_ts": 1188844365000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 645.0,

    "modified_by": "samuel@sieb.net",

    "modified_ts": 1188752233000,

    "previous_modified_ts": 1132989724000,

    "previous_status": "?",

    "previous_value": "review?(wtc@google.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "wtc@google.com"

}

20:08:40 - Matched added flag {

    "modified_by": "nelson@bolyard.me",

    "modified_ts": 1188934643000,

    "request_status": "+",

    "request_type": "superreview",

    "value": "superreview+"

} to removed flag {

    "duration_days": 1.0,

    "modified_by": "nelson@bolyard.me",

    "modified_ts": 1188934643000,

    "previous_modified_by": "wtc@google.com",

    "previous_modified_ts": 1188846000000,

    "previous_status": "?",

    "previous_value": "superreview?(nelson@bolyard.com)",

    "request_status": "d",

    "request_type": "superreview",

    "requestee": "nelson@bolyard.com"

}

20:08:40 - Matched added flag {

    "modified_by": "nelson@bolyard.me",

    "modified_ts": 1234134874000,

    "request_status": "-",

    "request_type": "superreview",

    "value": "superreview-"

} to removed flag {

    "duration_days": 1.0,

    "modified_by": "nelson@bolyard.me",

    "modified_ts": 1234134874000,

    "previous_modified_by": "ryanvm@gmail.com",

    "previous_modified_ts": 1234043373000,

    "previous_status": "+",

    "previous_value": "superreview+",

    "request_status": "d",

    "request_type": "superreview"

}

20:08:40 - Matched added flag {

    "modified_by": "nelson@bolyard.me",

    "modified_ts": 1234135388000,

    "request_status": "-",

    "request_type": "superreview",

    "value": "superreview-"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "nelson@bolyard.me",

    "modified_ts": 1234135388000,

    "previous_modified_by": "ryanvm@gmail.com",

    "previous_modified_ts": 1234049995000,

    "previous_status": "+",

    "previous_value": "superreview+",

    "request_status": "d",

    "request_type": "superreview"

}

20:08:41 - PROBLEM: Unable to find CC:

     [

         "uconrad@gmx.net"

     ]

not in:

     [

         "aha@pinknet.cz",

         "basic@mozdev.org",

         "bugzilla@gemal.dk",

         "erwan.hamon@free.fr",

         "josh@harding.net",

         "miguel.covas@bancoval.es",

         "moksa@freetekno.fr",

         "mozilla@wagland.net",

         "mozilla_bugs@rambler.ru",

         "op@opweb.de",

         "relf@os2.ru",

         "robo@ynet.sk",

         "ulli.conrad@bio.uni-goettingen.de",

         "whistler@hideout.ch",

         "zuperdee@yahoo.com"

     ]

alias info:

     {

         "uconrad@gmx.net": null

     }

20:08:41 - Waiting on thread etl comments

20:08:42 - PROBLEM: Unable to find CC:

     [

         "ysugiura-ml@cl20.net"

     ]

not in:

     [

         "afranke@mathweb.org",

         "altlist@gmail.com",

         "ametedinov@gmail.com",

         "ancestor.ak@gmail.com",

         "andreas.christl@de.bosch.com",

         "anthony@derobert.net",

         "barnboy@trilobyte.net",

         "basic@mozdev.org",

         "bob.crystaltech@gmail.com",

         "brad0112358@yahoo.com",

         "brant@gurganus.name",

         "bugzilla.1.wurblzap@spamgourmet.com",

         "bugzilla@chimpychompy.org",

         "bugzilla@tuxmachine.com",

         "bvrkchowdary@yahoo.co.in",

         "cb13@gmx.net",

         "chris.yeh@nokia.com",

         "dan.lambert@noa.nintendo.com",

         "danielwang@mozillanews.org",

         "delzoun@gmail.com",

         "dveditz@mozilla.com",

         "ehsan@mozilla.com",

         "eyalroz@technion.ac.il",

         "fe@alterplast.ru",

         "gsaranyamca@gmail.com",

         "gunnar@wagenknecht.org",

         "hhielscher@gmail.com",

         "hullabalooza09@googlemail.com",

         "jasonb@dante.com",

         "jean_seb@videotron.ca",

         "jehan@zemarmot.net",

         "joules@gorfajn.com",

         "justdave@bugzilla.org",

         "kbenton@yitr.com",

         "kniht@us.ibm.com",

         "marcoos+bmo@marcoos.org",

         "matthias.thullner@de.bosch.com",

         "mikekonikoff@gmail.com",

         "mkanat@bugzilla.org",

         "mockodin@gmail.com",

         "mozilla-bugs@nogin.org",

         "mozilla-linux@srasku.net",

         "mozilla.bugs@alyoung.com",

         "mozilla@jackieliu.org",

         "mrbball@comcast.net",

         "nghoduong@gmail.com",

         "oliver@samera.com.py",

         "pacho@condmat1.ciencias.uniovi.es",

         "paulspencer@mindspring.com",

         "peter.jackson@rocksoft.com",

         "prodigion@hotmail.com",

         "prognathous@bluebottle.com",

         "raj@lordofthemoon.com",

         "ray@raybooysen.com",

         "reed@reedloden.com",

         "remember.pol@gmail.com",

         "roni_abusch@msafe.com",

         "shimono@bug-ja.org",

         "sreindl@sreindl.de",

         "t8m@centrum.cz",

         "tenorman777@yahoo.com",

         "tjholly@gmail.com",

         "veshi@veshi.com",

         "webmaster@eclipse.org",

         "wicked@sci.fi",

         "wulf.bugmail@yahoo.com",

         "yuta.sugiura@miraclelinux.com",

         "zain@voltage.com"

     ]

alias info:

     {

         "ysugiura-ml@cl20.net": null

     }

20:08:42 - PROBLEM: Unable to find CC:

     [

         "alt@sonic.net"

     ]

not in:

     [

         "afranke@mathweb.org",

         "altlist@gmail.com",

         "anthony@derobert.net",

         "barnboy@trilobyte.net",

         "basic@mozdev.org",

         "brad0112358@yahoo.com",

         "brant@gurganus.name",

         "chris.yeh@nokia.com",

         "dan.lambert@noa.nintendo.com",

         "danielwang@mozillanews.org",

         "jasonb@dante.com",

         "jean_seb@videotron.ca",

         "justdave@bugzilla.org",

         "kniht@us.ibm.com",

         "mozilla-bugs@nogin.org",

         "mozilla-linux@srasku.net",

         "oliver@samera.com.py",

         "prodigion@hotmail.com",

         "roni_abusch@msafe.com",

         "yuta.sugiura@miraclelinux.com",

         "zuperdee@yahoo.com"

     ]

alias info:

     {

         "alt@sonic.net": null

     }

20:08:42 - Matched added flag {

    "modified_by": "mkanat@bugzilla.org",

    "modified_ts": 1124760363000,

    "request_status": "-",

    "request_type": "blocking2.20",

    "value": "blocking2.20-"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "mkanat@bugzilla.org",

    "modified_ts": 1124760363000,

    "previous_modified_by": "ehilditch@aol.com",

    "previous_modified_ts": 1124712740000,

    "previous_status": "?",

    "previous_value": "blocking2.20?",

    "request_status": "d",

    "request_type": "blocking2.20"

}

20:08:42 - Matched added flag {

    "modified_by": "mkanat@bugzilla.org",

    "modified_ts": 1124760363000,

    "request_status": "-",

    "request_type": "blocking2.18.4",

    "value": "blocking2.18.4-"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "mkanat@bugzilla.org",

    "modified_ts": 1124760363000,

    "previous_modified_by": "ehilditch@aol.com",

    "previous_modified_ts": 1124712740000,

    "previous_status": "?",

    "previous_value": "blocking2.18.4?",

    "request_status": "d",

    "request_type": "blocking2.18.4"

}

20:08:42 - Matched added flag {

    "modified_by": "mkanat@bugzilla.org",

    "modified_ts": 1124760363000,

    "request_status": "-",

    "request_type": "blocking2.16.11",

    "value": "blocking2.16.11-"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "mkanat@bugzilla.org",

    "modified_ts": 1124760363000,

    "previous_modified_by": "ehilditch@aol.com",

    "previous_modified_ts": 1124712740000,

    "previous_status": "?",

    "previous_value": "blocking2.16.11?",

    "request_status": "d",

    "request_type": "blocking2.16.11"

}

20:08:42 - Matched added flag {

    "modified_by": "lpsolit@gmail.com",

    "modified_ts": 1329618359000,

    "request_status": "-",

    "request_type": "review",

    "value": "review-"

} to removed flag {

    "duration_days": 115.0,

    "modified_by": "lpsolit@gmail.com",

    "modified_ts": 1329618359000,

    "previous_modified_by": "yuta.sugiura@miraclelinux.com",

    "previous_modified_ts": 1319619513000,

    "previous_status": "?",

    "previous_value": "review?(mkanat@bugzilla.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "mkanat@bugzilla.org"

}

20:08:42 - Matched added flag {

    "modified_by": "lpsolit@gmail.com",

    "modified_ts": 1361069117000,

    "request_status": "-",

    "request_type": "review",

    "value": "review-"

} to removed flag {

    "duration_days": 134.0,

    "modified_by": "lpsolit@gmail.com",

    "modified_ts": 1361069117000,

    "previous_modified_by": "dkl@mozilla.com",

    "previous_modified_ts": 1349456022000,

    "previous_status": "?",

    "previous_value": "review?(glob@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "glob@mozilla.com"

}

20:08:42 - Matched added flag {

    "modified_by": "jouni@heikniemi.net",

    "modified_ts": 1059236629000,

    "request_status": "-",

    "request_type": "review",

    "value": "review-"

} to removed flag {

    "duration_days": 167.0,

    "modified_by": "jouni@heikniemi.net",

    "modified_ts": 1059236629000,

    "previous_modified_by": "brant@gurganus.name",

    "previous_modified_ts": 1044738348000,

    "previous_status": "?",

    "previous_value": "review?",

    "request_status": "d",

    "request_type": "review"

}

20:08:43 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:43 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:43 - PROBLEM Setting this bug to be uncertain.

20:08:43 - Nothing added or removed. Skipping update.

20:08:43 - UNCERTAIN ALIAS FOUND: dbaron@fas.harvard == dbaron@dbaron.org

20:08:43 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:43 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:43 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:43 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:43 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:43 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:43 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:43 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:43 - PROBLEM: Found removed bug(678).cc value: (Removing [

    "erik@cj.com"

] can not result in [

    "rahmcoff+moz@radio1190.org",

    "bugmail@impromptu.at",

    "serhunt@flash.net",

    "adamlock@eircom.net",

    "bbaetz@ug.cs.usyd.edu.au",

    "burnus@gmx.de",

    "michael@netobjects.com",

    "braden@endoframe.com",

    "thomas@deniau.org",

    "sebastian@sspaeth.de",

    "waterson@maubi.net",

    "agustinmfernandez@gmail.com",

    "paul.a.smith@home.com",

    "peterlubczynski-bugs@peterl.com",

    "buster@formerly-netscape.com.tld",

    "mpt@postinbox.com",

    "erik@cj.com",

    "security-bugs@alphacentauri.cc",

    "karl@huftis.org",

    "matty_is_a_geek@fastmail.fm",

    "attinasi@formerly-netscape.com.tld",

    "antti.nayha@nixu.fi",

    "hyatt@mozilla.org",

    "mozilla@davidkrause.com",

    "kazhik@gmail.com",

    "dbaron@fas.harvard.edu",

    "erik@cj.",

    "val@valsharp.co.uk",

    "shrir@formerly-netscape.com.tld",

    "sacolcor@provide.net"

])

20:08:43 - PROBLEM: Found removed bug(678).cc value: (Removing [

    "michael@netobjects.com"

] can not result in [

    "rahmcoff+moz@radio1190.org",

    "bugmail@impromptu.at",

    "serhunt@flash.net",

    "kazhik@gmail.com",

    "burnus@gmx.de",

    "michael@netobjects.com",

    "kazhik@mozilla.gr.jp",

    "braden@endoframe.com",

    "thomas@deniau.org",

    "sebastian@sspaeth.de",

    "waterson@maubi.net",

    "paul.a.smith@home.com",

    "peterlubczynski-bugs@peterl.com",

    "greg@tcp.com",

    "buster@formerly-netscape.com.tld",

    "mpt@postinbox.com",

    "security-bugs@alphacentauri.cc",

    "karl@huftis.org",

    "matty_is_a_geek@fastmail.fm",

    "attinasi@formerly-netscape.com.tld",

    "antti.nayha@nixu.fi",

    "hyatt@mozilla.org",

    "huftis@bigfoot.com",

    "mozilla@davidkrause.com",

    "dbaron@fas.harvard.edu",

    "val@valsharp.co.uk",

    "michael@ne",

    "shrir@formerly-netscape.com.tld",

    "sacolcor@provide.net"

])

20:08:43 - PROBLEM: Found removed bug(678).cc value: (Removing [

    "mozilla@davidkrause.com"

] can not result in [

    "rahmcoff+moz@radio1190.org",

    "bugmail@impromptu.at",

    "kazhik@gmail.com",

    "burnus@gmx.de",

    "michael@netobjects.com",

    "kazhik@mozilla.gr.jp",

    "braden@endoframe.com",

    "thomas@deniau.org",

    "sebastian@sspaeth.de",

    "waterson@maubi.net",

    "paul.a.smith@home.com",

    "peterlubczynski-bugs@peterl.com",

    "greg@tcp.com",

    "moz",

    "buster@formerly-netscape.com.tld",

    "mpt@postinbox.com",

    "security-bugs@alphacentauri.cc",

    "karl@huftis.org",

    "matty_is_a_geek@fastmail.fm",

    "attinasi@formerly-netscape.com.tld",

    "antti.nayha@nixu.fi",

    "hyatt@mozilla.org",

    "huftis@bigfoot.com",

    "mozilla@davidkrause.com",

    "dbaron@fas.harvard.edu",

    "val@valsharp.co.uk",

    "shrir@formerly-netscape.com.tld",

    "sacolcor@provide.net"

])

20:08:43 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:43 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:43 - PROBLEM: Found removed bug(678).cc value: (Removing [

    "paul.a.smith@home.com"

] can not result in [

    "rahmcoff+moz@radio1190.org",

    "bugmail@impromptu.at",

    "pa",

    "burnus@gmx.de",

    "michael@netobjects.com",

    "braden@endoframe.com",

    "thomas@deniau.org",

    "sebastian@sspaeth.de",

    "waterson@maubi.net",

    "mpt@mailandnews.com",

    "paul.a.smith@home.com",

    "peterlubczynski-bugs@peterl.com",

    "greg@tcp.com",

    "buster@formerly-netscape.com.tld",

    "mpt@postinbox.com",

    "security-bugs@alphacentauri.cc",

    "karl@huftis.org",

    "matty_is_a_geek@fastmail.fm",

    "antti.nayha@nixu.fi",

    "hyatt@mozilla.org",

    "huftis@bigfoot.com",

    "mozilla@davidkrause.com",

    "dbaron@fas.harvard.edu",

    "val@valsharp.co.uk",

    "shrir@formerly-netscape.com.tld",

    "sacolcor@provide.net"

])

20:08:43 - PROBLEM Unable to pattern match added value: currBugState.cc: (sac not in : [

    "rahmcoff+moz@radio1190.org",

    "bugmail@impromptu.at",

    "burnus@gmx.de",

    "michael@netobjects.com",

    "braden@endoframe.com",

    "thomas@deniau.org",

    "sebastian@sspaeth.de",

    "waterson@maubi.net",

    "mpt@mailandnews.com",

    "paul.a.smith@home.com",

    "peterlubczynski-bugs@peterl.com",

    "greg@tcp.com",

    "mpt@postinbox.com",

    "security-bugs@alphacentauri.cc",

    "karl@huftis.org",

    "matty_is_a_geek@fastmail.fm",

    "antti.nayha@nixu.fi",

    "hyatt@mozilla.org",

    "huftis@bigfoot.com",

    "mozilla@davidkrause.com",

    "dbaron@fas.harvard.edu",

    "val@valsharp.co.uk",

    "shrir@formerly-netscape.com.tld",

    "sacolcor@provide.net"

])

20:08:43 - PROBLEM: Found removed bug(678).cc value: (Removing [

    "sacolcor@provide.net"

] can not result in [

    "rahmcoff+moz@radio1190.org",

    "bugmail@impromptu.at",

    "burnus@gmx.de",

    "michael@netobjects.com",

    "braden@endoframe.com",

    "thomas@deniau.org",

    "sebastian@sspaeth.de",

    "waterson@maubi.net",

    "mpt@mailandnews.com",

    "paul.a.smith@home.com",

    "peterlubczynski-bugs@peterl.com",

    "greg@tcp.com",

    "mpt@postinbox.com",

    "security-bugs@alphacentauri.cc",

    "karl@huftis.org",

    "matty_is_a_geek@fastmail.fm",

    "antti.nayha@nixu.fi",

    "hyatt@mozilla.org",

    "huftis@bigfoot.com",

    "mozilla@davidkrause.com",

    "dbaron@fas.harvard.edu",

    "val@valsharp.co.uk",

    "shrir@formerly-netscape.com.tld",

    "sacolcor@provide.net"

])

20:08:43 - UNCERTAIN ALIAS FOUND: shrir@ne == shrir@formerly-netscape.com.tld

20:08:44 - PROBLEM Unable to find added FLAG: attachment.flags: (All review+ not in : [

    {

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247603182000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "peterv@propagandism.org",

        "value": "review?(peterv@propagandism.org)"

    }

])

20:08:44 - PROBLEM Unable to find added FLAG: attachment.flags: (All review+ not in : [

    {

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247603182000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "peterv@propagandism.org",

        "value": "review?(peterv@propagandism.org)"

    },

    {

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247603182000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "benjamin@smedbergs.us",

        "value": "review?(benjamin@smedbergs.us)"

    }

])

20:08:44 - PROBLEM Unable to find added FLAG: attachment.flags: (All review+ not in : [

    {

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247603182000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "peterv@propagandism.org",

        "value": "review?(peterv@propagandism.org)"

    },

    {

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247603182000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "benjamin@smedbergs.us",

        "value": "review?(benjamin@smedbergs.us)"

    },

    {

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247603182000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "mozilla@weilbacher.org",

        "value": "review?(mozilla@weilbacher.org)"

    }

])

20:08:44 - PROBLEM Unable to find added FLAG: attachment.flags: (All review+ not in : [

    {

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247603182000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "peterv@propagandism.org",

        "value": "review?(peterv@propagandism.org)"

    },

    {

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247603182000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "benjamin@smedbergs.us",

        "value": "review?(benjamin@smedbergs.us)"

    },

    {

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247603182000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "mozilla@weilbacher.org",

        "value": "review?(mozilla@weilbacher.org)"

    },

    {

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247603182000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "roc@ocallahan.org",

        "value": "review?(roc@ocallahan.org)"

    }

])

20:08:44 - Matched added flag {

    "modified_by": "jmathies@mozilla.com",

    "modified_ts": 1247635805000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to multiple removed flags [

    {

        "duration_days": 0.0,

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247602990000,

        "previous_modified_ts": 1247602961000,

        "previous_status": "?",

        "previous_value": "review?",

        "request_status": "d",

        "request_type": "review"

    },

    {

        "duration_days": 0.0,

        "modified_by": "jmathies@mozilla.com",

        "modified_ts": 1247635805000,

        "previous_modified_by": "joe@drew.ca",

        "previous_modified_ts": 1247602990000,

        "previous_status": "?",

        "previous_value": "review?(jmathies@mozilla.com)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "jmathies@mozilla.com"

    }

].  Using the best.

20:08:44 - Matching on modified_ts fixed it

20:08:44 - Matched added flag {

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1247639562000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1247639562000,

    "previous_modified_by": "joe@drew.ca",

    "previous_modified_ts": 1247602685000,

    "previous_status": "?",

    "previous_value": "review?(bzbarsky@mit.edu)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bzbarsky@mit.edu"

}

20:08:44 - Matched added flag {

    "modified_by": "longsonr@gmail.com",

    "modified_ts": 1247641856000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to multiple removed flags [

    {

        "duration_days": 0.0,

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247602796000,

        "previous_modified_ts": 1247602753000,

        "previous_status": "?",

        "previous_value": "review?",

        "request_status": "d",

        "request_type": "review"

    },

    {

        "duration_days": 0.0,

        "modified_by": "joe@drew.ca",

        "modified_ts": 1247609922000,

        "previous_modified_ts": 1247602796000,

        "previous_status": "?",

        "previous_value": "review?(jwatt@jwatt.org)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "jwatt@jwatt.org"

    },

    {

        "duration_days": 0.0,

        "modified_by": "longsonr@gmail.com",

        "modified_ts": 1247641856000,

        "previous_modified_by": "joe@drew.ca",

        "previous_modified_ts": 1247609922000,

        "previous_status": "?",

        "previous_value": "review?(longsonr@gmail.com)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "longsonr@gmail.com"

    }

].  Using the best.

20:08:44 - Matching on modified_ts fixed it

20:08:44 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1247801774000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1247801774000,

    "previous_modified_by": "joe@drew.ca",

    "previous_modified_ts": 1247799442000,

    "previous_status": "?",

    "previous_value": "review?(roc@ocallahan.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "roc@ocallahan.org"

}

20:08:44 - Matched added flag {

    "modified_by": "vladimir@pobox.com",

    "modified_ts": 1247802704000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 2.0,

    "modified_by": "vladimir@pobox.com",

    "modified_ts": 1247802704000,

    "previous_modified_by": "joe@drew.ca",

    "previous_modified_ts": 1247603043000,

    "previous_status": "?",

    "previous_value": "review?(vladimir@pobox.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "vladimir@pobox.com"

}

20:08:44 - Matched added flag {

    "modified_by": "vladimir@pobox.com",

    "modified_ts": 1247802775000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 2.0,

    "modified_by": "vladimir@pobox.com",

    "modified_ts": 1247802775000,

    "previous_modified_by": "joe@drew.ca",

    "previous_modified_ts": 1247602846000,

    "previous_status": "?",

    "previous_value": "review?(vladimir@pobox.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "vladimir@pobox.com"

}

20:08:44 - Matched added flag {

    "modified_by": "vladimir@pobox.com",

    "modified_ts": 1247803024000,

    "request_status": "+",

    "request_type": "superreview",

    "value": "superreview+"

} to removed flag {

    "duration_days": 2.0,

    "modified_by": "vladimir@pobox.com",

    "modified_ts": 1247803024000,

    "previous_modified_by": "joe@drew.ca",

    "previous_modified_ts": 1247602617000,

    "previous_status": "?",

    "previous_value": "superreview?(vladimir@pobox.com)",

    "request_status": "d",

    "request_type": "superreview",

    "requestee": "vladimir@pobox.com"

}

20:08:44 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1247803356000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 2.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1247803356000,

    "previous_modified_by": "joe@drew.ca",

    "previous_modified_ts": 1247602617000,

    "previous_status": "?",

    "previous_value": "review?(roc@ocallahan.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "roc@ocallahan.org"

}

20:08:44 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1247803594000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 2.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1247803594000,

    "previous_modified_by": "joe@drew.ca",

    "previous_modified_ts": 1247602723000,

    "previous_status": "?",

    "previous_value": "review?(roc@ocallahan.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "roc@ocallahan.org"

}

20:08:44 - Matched added flag {

    "modified_by": "peterv@propagandism.org",

    "modified_ts": 1247838741000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to multiple removed flags [

    {

        "duration_days": 0.0,

        "modified_by": "roc@ocallahan.org",

        "modified_ts": 1247619937000,

        "previous_modified_by": "joe@drew.ca",

        "previous_modified_ts": 1247603182000,

        "previous_status": "?",

        "previous_value": "review?(roc@ocallahan.org)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "roc@ocallahan.org"

    },

    {

        "duration_days": 1.0,

        "modified_by": "mozilla@weilbacher.org",

        "modified_ts": 1247691891000,

        "previous_modified_by": "joe@drew.ca",

        "previous_modified_ts": 1247603210000,

        "previous_status": "?",

        "previous_value": "review?(mozilla@weilbacher.org)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "mozilla@weilbacher.org"

    },

    {

        "duration_days": 1.0,

        "modified_by": "benjamin@smedbergs.us",

        "modified_ts": 1247765852000,

        "previous_modified_by": "joe@drew.ca",

        "previous_modified_ts": 1247603247000,

        "previous_status": "?",

        "previous_value": "review?(benjamin@smedbergs.us)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "benjamin@smedbergs.us"

    },

    {

        "duration_days": 0.0,

        "modified_by": "mark.finkle@gmail.com",

        "modified_ts": 1247607164000,

        "previous_modified_by": "joe@drew.ca",

        "previous_modified_ts": 1247603281000,

        "previous_status": "?",

        "previous_value": "review?(mark.finkle@gmail.com)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "mark.finkle@gmail.com"

    },

    {

        "duration_days": 2.0,

        "modified_by": "peterv@propagandism.org",

        "modified_ts": 1247838741000,

        "previous_modified_by": "joe@drew.ca",

        "previous_modified_ts": 1247603373000,

        "previous_status": "?",

        "previous_value": "review?(peterv@propagandism.org)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "peterv@propagandism.org"

    }

].  Using the best.

20:08:44 - Matching on modified_ts fixed it

20:08:44 - Matched added flag {

    "modified_by": "karlt@mozbugz.karlt.net",

    "modified_ts": 1248049231000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 5.0,

    "modified_by": "karlt@mozbugz.karlt.net",

    "modified_ts": 1248049231000,

    "previous_modified_by": "joe@drew.ca",

    "previous_modified_ts": 1247602926000,

    "previous_status": "?",

    "previous_value": "review?(mozbugz@karlt.net)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "mozbugz@karlt.net"

}

20:08:44 - Matched added flag {

    "modified_by": "joshmoz@gmail.com",

    "modified_ts": 1248060765000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 5.0,

    "modified_by": "joshmoz@gmail.com",

    "modified_ts": 1248060765000,

    "previous_modified_by": "joe@drew.ca",

    "previous_modified_ts": 1247602648000,

    "previous_status": "?",

    "previous_value": "review?(joshmoz@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "joshmoz@gmail.com"

}

20:08:45 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:45 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:45 - PROBLEM Setting this bug to be uncertain.

20:08:45 - Nothing added or removed. Skipping update.

20:08:46 - PROBLEM: Unable to find CC:

     [

         "fred@pentacom.sk"

     ]

not in:

     [

         "a.lebedev@taom.ru",

         "aha@pinknet.cz",

         "annevk@annevk.nl",

         "ashshbhatt@aol.com",

         "ask@swva.net",

         "attinasi@formerly-netscape.com.tld",

         "basic@mozdev.org",

         "berkut.bugzilla@gmail.com",

         "bgrupe@gmail.com",

         "bosch2k1@yahoo.co.uk",

         "brian@webcoder.info",

         "bsharma@formerly-netscape.com.tld",

         "bugs_it@next-vision.net",

         "bugzilla.mozilla.org@dynamicbits.com",

         "bugzilla1@dougweb.org",

         "bugzilla@borfig.com",

         "bugzilla@met.cz",

         "bugzilla@robinlionheart.com",

         "bugzilla@spray.se",

         "bugzilla@webnaute.net",

         "burnus@gmx.de",

         "cardinal@dodds.net",

         "carlo@settebello.org",

         "chappie@mischko.com",

         "chris.tipper@gmail.com",

         "chris2mop@numericable.fr",

         "d_yerrick@pineight.com",

         "david@coffeefish.org",

         "dbaron@dbaron.org",

         "deegg@yahoo.co.jp",

         "dewildt@gmail.com",

         "dgk@dking.gen.nz",

         "ekrock@formerly-netscape.com.tld",

         "erich.iseli@iseli.org",

         "esben@oek.dk",

         "ezh@menelon.ee",

         "fantasai.bugs@inkedblade.net",

         "gpf@beta-cc.de",

         "grador@gmail.com",

         "grahammozbugzilla@laverty.ca",

         "h.hendriks@hhce.nl",

         "harvested_from_mozilla4@priss.org",

         "hyatt@mozilla.org",

         "ian@eruvia.org",

         "ipottinger@gmail.com",

         "jlarsen@fsu.edu",

         "jlquinn@us.ibm.com",

         "johann.petrak@chello.at",

         "jshin1987@gmail.com",

         "karl@huftis.org",

         "kluka@pobox.sk",

         "kwakeroni@gmail.com",

         "lapsap7+mz@gmail.com",

         "lethargo@comcast.net",

         "level@mub.biglobe.ne.jp",

         "m_mozilla@wickline.org",

         "marcus@felliweb.de",

         "masayuki@d-toybox.com",

         "matty_is_a_geek@fastmail.fm",

         "mehturt@gmail.com",

         "mental@kludge.org",

         "minusf@obiit.org",

         "mithgol@mail.ru",

         "moz2@placenamehere.com",

         "moz@liebesgedichte.siteware.ch",

         "mozilla@davidkrause.com",

         "mozilla@insert.net.pl",

         "mozillabugs@scrivo.nl",

         "nivoside@yahoo.co.jp",

         "notifications@majda.cz",

         "olaf@aros.net",

         "oliver@samera.com.py",

         "paul.nendick@abnamro.com",

         "pbartecki@mozillapl.org",

         "pierre@formerly-netscape.com.tld",

         "pirat@anime.cz",

         "piskozub@iopan.gda.pl",

         "pkwarren@gmail.com",

         "prognathous@bluebottle.com",

         "public@telcontar.net",

         "rahmcoff+moz@radio1190.org",

         "raj@lordofthemoon.com",

         "sacolcor@provide.net",

         "samuel@sieb.net",

         "sbq@sbqsam.com",

         "schwarz.cgs@gmx.de",

         "sekundes@gmail.com",

         "seno.aiko@gmail.com",

         "skysurfer24@gmx.net",

         "st.n@gmx.net",

         "stefan.borggraefe@gmx.de",

         "stephen.donner@gmail.com",

         "stevehomayoun@hotmail.com",

         "stmoebius@gmx.de",

         "t8m@centrum.cz",

         "taras.tielkes@gmail.com",

         "tedsz@bigpond.com",

         "terry_n_brown@yahoo.com",

         "timo.ruiter@sdu-identification.nl",

         "tony@marston-home.demon.co.uk",

         "vicentesalvador@netscape.net",

         "wazow@gazeta.pl",

         "webmaster@geraldton.wa.gov.au",

         "welchkr@excite.com",

         "xpusostomos@gmail.com",

         "yourfriend@hf-sanyo.com",

         "zapperlott@gmail.com",

         "zookqvalem@yahoo.com"

     ]

alias info:

     {

         "fred@pentacom.sk": null

     }

20:08:46 - PROBLEM: Unable to find CC:

     [

         "chris2mop@cegetel.net"

     ]

not in:

     [

         "a.lebedev@taom.ru",

         "aha@pinknet.cz",

         "annevk@annevk.nl",

         "ask@swva.net",

         "attinasi@formerly-netscape.com.tld",

         "basic@mozdev.org",

         "berkut.bugzilla@gmail.com",

         "bgrupe@gmail.com",

         "bosch2k1@yahoo.co.uk",

         "bugs_it@next-vision.net",

         "bugzilla.mozilla.org@dynamicbits.com",

         "bugzilla1@dougweb.org",

         "bugzilla@borfig.com",

         "bugzilla@met.cz",

         "bugzilla@robinlionheart.com",

         "bugzilla@webnaute.net",

         "burnus@gmx.de",

         "cardinal@dodds.net",

         "carlo@settebello.org",

         "chappie@mischko.com",

         "chris2mop@numericable.fr",

         "d_yerrick@pineight.com",

         "dbaron@dbaron.org",

         "deegg@yahoo.co.jp",

         "dewildt@gmail.com",

         "dgk@dking.gen.nz",

         "ekrock@formerly-netscape.com.tld",

         "esben@oek.dk",

         "ezh@menelon.ee",

         "fantasai.bugs@inkedblade.net",

         "gpf@beta-cc.de",

         "h.hendriks@hhce.nl",

         "hyatt@mozilla.org",

         "jlarsen@fsu.edu",

         "jlquinn@us.ibm.com",

         "johann.petrak@chello.at",

         "jshin1987@gmail.com",

         "karl@huftis.org",

         "kluka@pobox.sk",

         "kwakeroni@gmail.com",

         "lapsap7+mz@gmail.com",

         "lethargo@comcast.net",

         "level@mub.biglobe.ne.jp",

         "m_mozilla@wickline.org",

         "marcus@felliweb.de",

         "masayuki@d-toybox.com",

         "matty_is_a_geek@fastmail.fm",

         "mehturt@gmail.com",

         "mental@kludge.org",

         "minusf@obiit.org",

         "mithgol@mail.ru",

         "moz@liebesgedichte.siteware.ch",

         "mozilla@davidkrause.com",

         "mozilla@insert.net.pl",

         "mozillabugs@scrivo.nl",

         "nivoside@yahoo.co.jp",

         "notifications@majda.cz",

         "olaf@aros.net",

         "oliver@samera.com.py",

         "paul.nendick@abnamro.com",

         "pbartecki@mozillapl.org",

         "pierre@formerly-netscape.com.tld",

         "pirat@anime.cz",

         "piskozub@iopan.gda.pl",

         "pkwarren@gmail.com",

         "prognathous@bluebottle.com",

         "public@telcontar.net",

         "raj@lordofthemoon.com",

         "sacolcor@provide.net",

         "samuel@sieb.net",

         "sbq@sbqsam.com",

         "sekundes@gmail.com",

         "skysurfer24@gmx.net",

         "st.n@gmx.net",

         "stefan.borggraefe@gmx.de",

         "stephen.donner@gmail.com",

         "stevehomayoun@hotmail.com",

         "stmoebius@gmx.de",

         "t8m@centrum.cz",

         "taras.tielkes@gmail.com",

         "tedsz@bigpond.com",

         "timo.ruiter@sdu-identification.nl",

         "tony@marston-home.demon.co.uk",

         "vicentesalvador@netscape.net",

         "welchkr@excite.com",

         "xpusostomos@gmail.com",

         "zapperlott@gmail.com",

         "zookqvalem@yahoo.com"

     ]

alias info:

     {

         "chris2mop@cegetel.net": null

     }

20:08:46 - PROBLEM: Unable to find CC:

     [

         "chris2mop@tiscali.fr"

     ]

not in:

     [

         "a.lebedev@taom.ru",

         "aha@czilla.cz",

         "asdxx@mailbox.hu",

         "ashshbhatt@aol.com",

         "ask@swva.net",

         "attinasi@formerly-netscape.com.tld",

         "basic@mozillanews.org",

         "berkut.bugzilla@gmail.com",

         "bosch2k1@yahoo.co.uk",

         "brian@webcoder.info",

         "bsharma@formerly-netscape.com.tld",

         "bug@annevankesteren.nl",

         "bugs_it@next-vision.net",

         "bugzilla@robinlionheart.com",

         "bugzilla@spray.se",

         "burnus@gmx.de",

         "cardinal@dodds.net",

         "carlo@acfiorentina.net",

         "chris.tipper@tiscali.co.uk",

         "chris2mop@cegetel.net",

         "chris2mop@numericable.fr",

         "chris@tech.com.au",

         "d_yerrick@pineight.com",

         "dbaron@mozillafoundation.org",

         "deegg@yahoo.co.jp",

         "deleeuw@gmail.com",

         "dewildt@gmail.com",

         "dgk@dking.gen.nz",

         "dkoppenh@null.net",

         "ekrock@formerly-netscape.com.tld",

         "erich.iseli@iseli.org",

         "esben@oek.dk",

         "eyalroz@technion.ac.il",

         "ezh@menelon.ee",

         "fantasai.bugs@inkedblade.net",

         "fred@pentacom.sk",

         "harvested_from_mozilla4@priss.org",

         "hyatt@mozilla.org",

         "ian@eruvia.org",

         "ian@hixie.ch",

         "ipottinger@gmail.com",

         "jce2@po.cwru.edu",

         "jerryiii@hotmail.com",

         "jlarsen@fsu.edu",

         "jshin1987@gmail.com",

         "karl@huftis.org",

         "kluka@pobox.sk",

         "lethargo@comcast.net",

         "level@mub.biglobe.ne.jp",

         "m_mozilla@wickline.org",

         "masayuki@d-toybox.com",

         "mattyt-bugzilla@tpg.com.au",

         "mental@kludge.org",

         "minusf@obiit.org",

         "moz@liebesgedichte.siteware.ch",

         "moz@placenamehere.com",

         "mozilla@davidkrause.com",

         "mozilla@insert.net.pl",

         "nivoside@yahoo.co.jp",

         "notifications@majda.cz",

         "olaf@aros.net",

         "oliver@samera.com.py",

         "paul.nendick@abnamro.com",

         "pbartecki@mozillapl.org",

         "pierre@formerly-netscape.com.tld",

         "prognathous@bluebottle.com",

         "public@telcontar.net",

         "rahmcoff@radio1190.colorado.edu",

         "sacolcor@provide.net",

         "seak_tengfong@yahoo.com",

         "sekundes@gmail.com",

         "st.n@gmx.net",

         "stefan.borggraefe@gmx.de",

         "stmoebius@gmx.de",

         "t8m@centrum.cz",

         "taras.tielkes@gmail.com",

         "terry_n_brown@yahoo.com",

         "treebeard@treebeard.net",

         "twanger@bluetwanger.de",

         "valyala@tut.by",

         "vicentesalvador@netscape.net",

         "vyv03354@nifty.ne.jp",

         "wazow@gazeta.pl",

         "welchkr@excite.com"

     ]

alias info:

     {

         "chris2mop@tiscali.fr": null

     }

20:08:46 - PROBLEM: Unable to find CC:

     [

         "resident@telcontar.net"

     ]

not in:

     [

         "a.lebedev@taom.ru",

         "aha@czilla.cz",

         "asdxx@mailbox.hu",

         "ashshbhatt@aol.com",

         "ask@swva.net",

         "attinasi@formerly-netscape.com.tld",

         "basic@mozillanews.org",

         "berkut.bugzilla@gmail.com",

         "bosch2k1@yahoo.co.uk",

         "brian@webcoder.info",

         "bsharma@formerly-netscape.com.tld",

         "bugs_it@next-vision.net",

         "bugzilla@robinlionheart.com",

         "bugzilla@spray.se",

         "burnus@gmx.de",

         "bzbarsky@mit.edu",

         "cardinal@dodds.net",

         "carlo@acfiorentina.net",

         "chris2mop@cegetel.net",

         "chris2mop@numericable.fr",

         "chris@tech.com.au",

         "dbaron@mozillafoundation.org",

         "deleeuw@gmail.com",

         "dewildt@gmail.com",

         "dgk@dking.gen.nz",

         "dkoppenh@null.net",

         "ekrock@formerly-netscape.com.tld",

         "erich.iseli@iseli.org",

         "esben@oek.dk",

         "ezh@menelon.ee",

         "fantasai.bugs@inkedblade.net",

         "fred@pentacom.sk",

         "harvested_from_mozilla4@priss.org",

         "hyatt@mozilla.org",

         "ian@eruvia.org",

         "ian@hixie.ch",

         "jce2@po.cwru.edu",

         "jerryiii@hotmail.com",

         "jlarsen@fsu.edu",

         "jshin1987@gmail.com",

         "karl@huftis.org",

         "kluka@pobox.sk",

         "lethargo@comcast.net",

         "level@mub.biglobe.ne.jp",

         "m_mozilla@wickline.org",

         "masayuki@d-toybox.com",

         "mattyt-bugzilla@tpg.com.au",

         "mental@kludge.org",

         "minusf@obiit.org",

         "moz@liebesgedichte.siteware.ch",

         "moz@placenamehere.com",

         "mozilla@davidkrause.com",

         "mozilla@insert.net.pl",

         "nivoside@yahoo.co.jp",

         "notifications@majda.cz",

         "olaf@aros.net",

         "oliver@samera.com.py",

         "paul.nendick@abnamro.com",

         "pbartecki@mozillapl.org",

         "pierre@formerly-netscape.com.tld",

         "prognathous@bluebottle.com",

         "public@telcontar.net",

         "rahmcoff@radio1190.colorado.edu",

         "sacolcor@provide.net",

         "seak_tengfong@yahoo.com",

         "st.n@gmx.net",

         "stefan.borggraefe@gmx.de",

         "stmoebius@gmx.de",

         "t8m@centrum.cz",

         "taras.tielkes@gmail.com",

         "terry_n_brown@yahoo.com",

         "treebeard@treebeard.net",

         "twanger@bluetwanger.de",

         "umbbs@hotmail.com",

         "valyala@tut.by",

         "vicentesalvador@netscape.net",

         "vyv03354@nifty.ne.jp",

         "wazow@gazeta.pl",

         "welchkr@excite.com"

     ]

alias info:

     {

         "resident@telcontar.net": null

     }

20:08:46 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:46 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:46 - PROBLEM Setting this bug to be uncertain.

20:08:46 - Nothing added or removed. Skipping update.

20:08:46 - UNCERTAIN ALIAS FOUND: karnaze@netscap == karnaze@formerly-netscape.com.tld

20:08:46 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:46 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:46 - PROBLEM: Found removed bug(915).cc value: (Removing [

    "mental@kludge.org"

] can not result in [

    "chris2mop@cegetel.net",

    "jlarsen@fsu.edu",

    "t8m@centrum.cz",

    "bsharma@formerly-netscape.com.tld",

    "burnus@gmx.de",

    "jce2@po.cwru.edu",

    "ezh@menelon.ee",

    "peterl-retired@netscape.com",

    "minusf@obiit.org",

    "mental@klud",

    "chris2mop@numericable.fr",

    "pierre@formerly-netscape.com.tld",

    "ian@hixie.ch",

    "mattyt-bugzilla@tpg.com.au",

    "ekrock@formerly-netscape.com.tld",

    "vyv03354@nifty.ne.jp",

    "karl@huftis.org",

    "karnaze@netscape.com",

    "mental@kludge.org",

    "attinasi@formerly-netscape.com.tld",

    "erich.iseli@iseli.org",

    "troy@netscape.com",

    "taras.tielkes@gmail.com",

    "mozilla@davidkrause.com",

    "public@telcontar.net",

    "sacolcor@provide.net",

    "dbaron@mozillafoundation.org"

])

20:08:46 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:46 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:46 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:46 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:46 - PROBLEM: Found removed bug(915).cc value: (Removing [

    "mozilla@davidkrause.com"

] can not result in [

    "chris2mop@cegetel.net",

    "jlarsen@fsu.edu",

    "t8m@centrum.cz",

    "burnus@gmx.de",

    "jce2@po.cwru.edu",

    "ezh@menelon.ee",

    "peterl-retired@netscape.com",

    "minusf@obiit.org",

    "chris2mop@numericable.fr",

    "pierre@formerly-netscape.com.tld",

    "ian@hixie.ch",

    "mattyt-bugzilla@tpg.com.au",

    "ekrock@formerly-netscape.com.tld",

    "vyv03354@nifty.ne.jp",

    "karl@huftis.org",

    "karnaze@netscape.com",

    "mental@kludge.org",

    "attinasi@formerly-netscape.com.tld",

    "erich.iseli@iseli.org",

    "troy@netscape.com",

    "taras.tielkes@gmail.com",

    "mozilla@davidkrause.com",

    "public@telcontar.net",

    "sacolcor@provide.net",

    "mozilla@davidk",

    "dbaron@mozillafoundation.org"

])

20:08:46 - PROBLEM: Found removed bug(915).cc value: (Removing [

    "peterl-retired@netscape.com"

] can not result in [

    "chris2mop@cegetel.net",

    "chris2mop@numericable.fr",

    "t8m@centrum.cz",

    "burnus@gmx.de",

    "jce2@po.cwru.edu",

    "ezh@menelon.ee",

    "peterl-retired@netscape.com",

    "minusf@obiit.org",

    "jlarsen@fsu.edu",

    "peterl-retir",

    "pierre@formerly-netscape.com.tld",

    "ian@hixie.ch",

    "mattyt-bugzilla@tpg.com.au",

    "ekrock@formerly-netscape.com.tld",

    "vyv03354@nifty.ne.jp",

    "karl@huftis.org",

    "karnaze@netscape.com",

    "mental@kludge.org",

    "erich.iseli@iseli.org",

    "troy@netscape.com",

    "taras.tielkes@gmail.com",

    "mozilla@davidkrause.com",

    "public@telcontar.net",

    "sacolcor@provide.net",

    "dbaron@mozillafoundation.org"

])

20:08:46 - UNCERTAIN ALIAS FOUND: sacolcor@provid == sacolcor@provide.net

20:08:46 - PROBLEM Unable to pattern match added value: currBugState.cc: (t not in : [

    "chris2mop@cegetel.net",

    "jlarsen@fsu.edu",

    "saco",

    "t8m@centrum.cz",

    "t.r.tiekes@",

    "burnus@gmx.de",

    "ezh@menelon.ee",

    "peterl-retired@netscape.com",

    "minusf@obiit.org",

    "chris2mop@numericable.fr",

    "pierre@formerly-netscape.com.tld",

    "ian@hixie.ch",

    "mattyt-bugzilla@tpg.com.au",

    "vyv03354@nifty.ne.jp",

    "karl@huftis.org",

    "karnaze@netscape.com",

    "mental@kludge.org",

    "erich.iseli@iseli.org",

    "troy@netscape.com",

    "taras.tielkes@gmail.com",

    "mozilla@davidkrause.com",

    "public@telcontar.net",

    "sacolcor@provide.net",

    "dbaron@mozillafoundation.org"

])

20:08:46 - PROBLEM: Found removed bug(915).cc value: (Removing [

    "troy@netscape.com"

] can not result in [

    "chris2mop@cegetel.net",

    "jlarsen@fsu.edu",

    "saco",

    "t8m@centrum.cz",

    "t.r.tiekes@",

    "burnus@gmx.de",

    "peterl-retired@netscape.com",

    "minusf@obiit.org",

    "chris2mop@numericable.fr",

    "troy@netscape.",

    "pierre@formerly-netscape.com.tld",

    "ian@hixie.ch",

    "mattyt-bugzilla@tpg.com.au",

    "vyv03354@nifty.ne.jp",

    "karl@huftis.org",

    "karnaze@netscape.com",

    "mental@kludge.org",

    "troy@netscape.com",

    "taras.tielkes@gmail.com",

    "mozilla@davidkrause.com",

    "t.r.tiekes@zap.a2000.nl",

    "public@telcontar.net",

    "sacolcor@provide.net",

    "dbaron@mozillafoundation.org"

])

20:08:46 - Matched added flag {

    "modified_by": "daniel@glazman.org",

    "modified_ts": 1039595734000,

    "request_status": "-",

    "request_type": "blocking1.3a",

    "value": "blocking1.3a-"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "daniel@glazman.org",

    "modified_ts": 1039595734000,

    "previous_modified_by": "tuxracer@attbi.com",

    "previous_modified_ts": 1039560200000,

    "previous_status": "?",

    "previous_value": "blocking1.3a?",

    "request_status": "d",

    "request_type": "blocking1.3a"

}

20:08:47 - Waiting on thread etl comments

20:08:47 - PROBLEM: Unable to find CC:

     [

         "taras.tielkes@gmail.com"

     ]

not in:

     [

         "asdxx@mailbox.hu",

         "ashshbhatt@aol.com",

         "bgrupe@gmail.com",

         "bosch2k1@yahoo.co.uk",

         "brian@webcoder.info",

         "bsharma@formerly-netscape.com.tld",

         "bugs.r.us@gmail.com",

         "bugzilla@mazdon.com",

         "bugzilla@robinlionheart.com",

         "bugzilla@spray.se",

         "bugzillaonfix-alanjstrbugs@sneakemail.com",

         "cardinal@dodds.net",

         "chris.tipper@gmail.com",

         "chris2mop@cegetel.net",

         "chris2mop@numericable.fr",

         "dbaron@mozillafoundation.org",

         "deleeuw@gmail.com",

         "dgk@dking.gen.nz",

         "dkoppenh@null.net",

         "ekrock@formerly-netscape.com.tld",

         "erich.iseli@iseli.org",

         "fred@pentacom.sk",

         "gavin.sharp@gmail.com",

         "gerold.meisinger-reg@gmx.at",

         "grador@gmail.com",

         "grahammozbugzilla@laverty.ca",

         "harvested_from_mozilla4@priss.org",

         "hassman@czilla.cz",

         "ian@eruvia.org",

         "ian@hixie.ch",

         "ipottinger@gmail.com",

         "jce2@po.cwru.edu",

         "jepsar@gmail.com",

         "jerryiii@hotmail.com",

         "jlarsen@fsu.edu",

         "jshin1987@gmail.com",

         "kwakeroni@gmail.com",

         "mark_fierling@yahoo.com",

         "masayuki@d-toybox.com",

         "minusf@obiit.org",

         "moz@liebesgedichte.siteware.ch",

         "moz@placenamehere.com",

         "mozilla@davidkrause.com",

         "mozillamonks@yahoo.ca",

         "notifications@majda.cz",

         "paul.nendick@abnamro.com",

         "pavel.penaz@gmail.com",

         "pirat@anime.cz",

         "pivo@pobox.sk",

         "pkwarren@gmail.com",

         "prognathous@bluebottle.com",

         "rahmcoff@radio1190.colorado.edu",

         "russell.brown@insignia.com",

         "schwarz.cgs@gmx.de",

         "seno.aiko@gmail.com",

         "simone@piyosailing.com",

         "stefan.borggraefe@gmx.de",

         "terry_n_brown@yahoo.com",

         "treebeard@treebeard.net",

         "valyala@tut.by",

         "vincent_dhaene@hotmail.com",

         "vyv03354@nifty.ne.jp",

         "wazow@gazeta.pl",

         "webmaster@geraldton.wa.gov.au",

         "yourfriend@hf-sanyo.com"

     ]

alias info:

     {

         "taras.tielkes@gmail.com": null

     }

20:08:47 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1215639508000,

    "request_status": "-",

    "request_type": "wanted1.9.1",

    "value": "wanted1.9.1-"

} to removed flag {

    "duration_days": 34.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1215639508000,

    "previous_modified_by": "zackw@panix.com",

    "previous_modified_ts": 1212615519000,

    "previous_status": "?",

    "previous_value": "wanted1.9.1?",

    "request_status": "d",

    "request_type": "wanted1.9.1"

}

20:08:47 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1248387573000,

    "request_status": "-",

    "request_type": "blocking1.9.2",

    "value": "blocking1.9.2-"

} to removed flag {

    "duration_days": 26.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1248387573000,

    "previous_modified_by": "bugzilla@zirro.se",

    "previous_modified_ts": 1246091966000,

    "previous_status": "?",

    "previous_value": "blocking1.9.2?",

    "request_status": "d",

    "request_type": "blocking1.9.2"

}

20:08:47 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1248387573000,

    "request_status": "-",

    "request_type": "wanted1.9.2",

    "value": "wanted1.9.2-"

} to removed flag {

    "duration_days": 26.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1248387573000,

    "previous_modified_by": "bugzilla@zirro.se",

    "previous_modified_ts": 1246092001000,

    "previous_status": "?",

    "previous_value": "wanted1.9.2?",

    "request_status": "d",

    "request_type": "wanted1.9.2"

}

20:08:48 - PROBLEM Setting this bug to be uncertain.

20:08:48 - PROBLEM Unable to pattern match added value: currBugState.cc: (jrgm@netscape.c not in : [

    "aaronlev@gmail.com",

    "jrgmorrison@aol.com",

    "joki@formerly-netscape.com.tld",

    "saari@formerly-netscape.com.tld",

    "karnaze@formerly-netscape.com.tld",

    "dean_tessman@hotmail.com",

    "vidur@formerly-netscape.com.tld",

    "caustin@gmail.com",

    "bugzilla@iwaruna.com",

    "hwaara@gmail.com",

    "waterson@maubi.net",

    "basic@mozdev.org",

    "bugzilla@blakeross.com",

    "jruderman@gmail.com",

    "mpt@postinbox.com",

    "trentm@gmail.com",

    "briks.si@gmail.com",

    "pete_a90@yahoo.com",

    "kmcclusk@formerly-netscape.com.tld",

    "lchiang@formerly-netscape.com.tld",

    "antti.nayha@nixu.fi",

    "hyatt@mozilla.org",

    "jag-mozilla@jag.dreamhost.com",

    "trudelle@acm.org"

])

20:08:48 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:48 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:48 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:48 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:48 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:48 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:48 - UNCERTAIN ALIAS FOUND: lchiang@netscape == lchiang@formerly-netscape.com.tld

20:08:48 - UNCERTAIN ALIAS FOUND: mpt@mozilla.or == hyatt@mozilla.org

20:08:48 - PROBLEM Encountered uncertain added value.  Skipping.

20:08:48 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:48 - UNCERTAIN ALIAS FOUND: sairuh@netsca == sairuh@netscap

20:08:48 - UNCERTAIN ALIAS FOUND: trudelle@netscape. == trudelle@netscap

20:08:48 - PROBLEM Encountered uncertain removed value.  Skipping.

20:08:48 - PROBLEM: Found added(959).keywords value: (Removing [

    "nsbeta1"

] can not result in [

    "fcc508",

    "mozilla0.9",

    "helpwanted",

    "access",

    "nscatfood",

    "nsbeta1",

    "sec508"

])

20:08:48 - PROBLEM: Unable to find CC:

     [

         "steppenwulf241@gmail.com"

     ]

not in:

     [

         "bugmail@impromptu.at",

         "bugs_it@next-vision.net",

         "dbaron@dbaron.org",

         "hsivonen@iki.fi",

         "ian@hixie.ch",

         "jhawkins002@gmail.com",

         "katsuhiromihara@goo.jp",

         "luke@lukeross.name",

         "moz2@placenamehere.com",

         "pavlov@pavlov.net",

         "timeless@bemail.org"

     ]

alias info:

     {

         "steppenwulf241@gmail.com": null

     }

20:08:52 - Waiting on thread etl comments

20:08:57 - Waiting on thread etl comments

20:08:59 - Write comments to ElasticSearch

20:09:02 - Waiting on thread etl comments

 

ETL of first 1000 bugs done (both comments and metadata), start last block of (up to) 1000 bugs:

 

22:41:41 - Timer start: time to get bug list

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

     SELECT

         b.bug_id

     FROM

         bugs b

     LEFT JOIN

         bug_group_map m ON m.bug_id=b.bug_id

     WHERE

         delta_ts >= '1970-01-01 00:00:00' AND

         (856000 <= b.bug_id AND b.bug_id < 857000) AND

         m.bug_id IS NULL

 

22:41:41 - Timer end  : time to get bug list (took 0.134 sec)

22:41:41 - Read comments from database

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

             SELECT blocked AS bug_id

                 , CAST(null AS signed) AS modified_ts

                 , CAST(null AS char(255)) AS modified_by

                 , 'dependson' AS field_name

                 , CAST(dependson AS SIGNED) AS new_value

                 , CAST(null AS SIGNED) AS old_value

                 , CAST(null AS signed) AS attach_id

                 , 2 AS _merge_order

             FROM dependencies d

             WHERE

                (

           `blocked` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `blocked` BETWEEN 856070 AND 856163 OR

                     `blocked` BETWEEN 856186 AND 856217 OR

                     `blocked` BETWEEN 856244 AND 856378 OR

                     `blocked` BETWEEN 856385 AND 856448 OR

                     `blocked` BETWEEN 856450 AND 856647 OR

                     `blocked` BETWEEN 856670 AND 856720

                ) AND

                NOT (`blocked` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     )

             UNION

             SELECT dependson dependson

                 , null

                 , null

                 , 'blocked'

                 , CAST(blocked AS SIGNED)

                 , null

                 , null

                 , 2

             FROM dependencies d

             WHERE

                 (

           `dependson` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `dependson` BETWEEN 856070 AND 856163 OR

                     `dependson` BETWEEN 856186 AND 856217 OR

                     `dependson` BETWEEN 856244 AND 856378 OR

                     `dependson` BETWEEN 856385 AND 856448 OR

                     `dependson` BETWEEN 856450 AND 856647 OR

                     `dependson` BETWEEN 856670 AND 856720

                ) AND

                NOT (`dependson` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     )

             ORDER BY bug_id

   

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

                 SELECT

                     c.comment_id,

                     c.bug_id,

                     p.login_name modified_by,

                     UNIX_TIMESTAMP(CONVERT_TZ(bug_when, 'US/Pacific','UTC'))*1000 AS modified_ts,

                     c.thetext comment,

                     c.isprivate

                 FROM

                     longdescs c

                 LEFT JOIN

                     profiles p ON c.who = p.userid

                 WHERE

                     (

           `bug_id` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `bug_id` BETWEEN 856070 AND 856163 OR

                     `bug_id` BETWEEN 856186 AND 856217 OR

                     `bug_id` BETWEEN 856244 AND 856378 OR

                     `bug_id` BETWEEN 856385 AND 856448 OR

                     `bug_id` BETWEEN 856450 AND 856647 OR

                     `bug_id` BETWEEN 856670 AND 856720

                ) AND

                NOT (`bug_id` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     ) AND

                     bug_when >= '1970-01-01 00:00:00' AND

                     isprivate=0

           

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

                 SELECT

                     bug_id,

                     UNIX_TIMESTAMP(CONVERT_TZ(b.creation_ts, 'US/Pacific','UTC'))*1000 AS modified_ts,

                     lower(pr.login_name) AS modified_by,

                     UNIX_TIMESTAMP(CONVERT_TZ(b.creation_ts, 'US/Pacific','UTC'))*1000 AS created_ts,

                     lower(pr.login_name) AS created_by,

                     lower(pa.login_name) AS assigned_to,

                     lower(pq.login_name) AS qa_contact,

                     lower(prod.`name`) AS product,

                     lower(comp.`name`) AS component,

                    

                     short_desc,

                     bug_file_loc

                 ,

                     lower(`bug_severity`) `bug_severity`,

     lower(`bug_status`) `bug_status`,

     lower(`op_sys`) `op_sys`,

     lower(`priority`) `priority`,

     lower(`rep_platform`) `rep_platform`,

     lower(`version`) `version`,

     lower(`resolution`) `resolution`,

     lower(`target_milestone`) `target_milestone`,

     `status_whiteboard`,

     `votes`,

     `everconfirmed`,

     lower(`alias`) `alias`,

     `remaining_time`,

     lower(`cf_colo_site`) `cf_colo_site`,

     `cf_crash_signature`,

     lower(`cf_office`) `cf_office`,

     `cf_due_date`,

     `cf_last_resolved`,

     `cf_shadow_bug`,

     `restrict_comments`

                 FROM bugs b

                     LEFT JOIN profiles pr ON b.reporter = pr.userid

                     LEFT JOIN profiles pa ON b.assigned_to = pa.userid

                     LEFT JOIN profiles pq ON b.qa_contact = pq.userid

                     LEFT JOIN products prod ON prod.id = product_id

                     LEFT JOIN components comp ON comp.id = component_id

                 WHERE

                     (

           `bug_id` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `bug_id` BETWEEN 856070 AND 856163 OR

                     `bug_id` BETWEEN 856186 AND 856217 OR

                     `bug_id` BETWEEN 856244 AND 856378 OR

                     `bug_id` BETWEEN 856385 AND 856448 OR

                     `bug_id` BETWEEN 856450 AND 856647 OR

                     `bug_id` BETWEEN 856670 AND 856720

                ) AND

                NOT (`bug_id` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

          )

     )

           

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

             SELECT bug_id

                 , UNIX_TIMESTAMP(CONVERT_TZ(f.creation_date, 'US/Pacific','UTC'))*1000 AS modified_ts

                 , ps.login_name AS modified_by

                 , 'flagtypes_name' AS field_name

                 , CONCAT(ft.`name`,status,IF(requestee_id IS NULL,'',CONCAT('(',pr.login_name,')'))) AS new_value

                 , CAST(null AS char(255)) AS old_value

                 , attach_id

                 , 8 AS _merge_order

             FROM

                 flags f

             JOIN `flagtypes` ft ON f.type_id = ft.id

             JOIN profiles ps ON f.setter_id = ps.userid

             LEFT JOIN profiles pr ON f.requestee_id = pr.userid

             WHERE

                 (

           `bug_id` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `bug_id` BETWEEN 856070 AND 856163 OR

                     `bug_id` BETWEEN 856186 AND 856217 OR

                     `bug_id` BETWEEN 856244 AND 856378 OR

                     `bug_id` BETWEEN 856385 AND 856448 OR

                     `bug_id` BETWEEN 856450 AND 856647 OR

                     `bug_id` BETWEEN 856670 AND 856720

                ) AND

                NOT (`bug_id` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     )

             ORDER BY

                 bug_id

   

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

             SELECT

                 a.bug_id,

                 UNIX_TIMESTAMP(CONVERT_TZ(bug_when, 'US/Pacific','UTC'))*1000 AS modified_ts,

                 lower(login_name) AS modified_by,

                 replace(field.`name`, '.', '_') AS field_name,

                 lower(CAST(

                     CASE

                     WHEN a.fieldid IN (-1) THEN '<screened>'

                     WHEN trim(added)='' THEN NULL

                     ELSE trim(added)

                     END AS CHAR CHARACTER SET utf8

                 )) AS new_value,

                 lower(CAST(

                     CASE

                     WHEN a.fieldid IN (-1) THEN '<screened>'

                     WHEN trim(removed)='' THEN NULL

                     ELSE trim(removed)

                     END AS CHAR CHARACTER SET utf8

                 )) AS old_value,

                 attach_id,

                 9 AS _merge_order

             FROM

                 bugs_activity a

             JOIN

                 profiles p ON a.who = p.userid

             JOIN

                 fielddefs field ON a.fieldid = field.`id`

             WHERE

                 (

           `a`.`bug_id` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `a`.`bug_id` BETWEEN 856070 AND 856163 OR

                     `a`.`bug_id` BETWEEN 856186 AND 856217 OR

                     `a`.`bug_id` BETWEEN 856244 AND 856378 OR

                     `a`.`bug_id` BETWEEN 856385 AND 856448 OR

                     `a`.`bug_id` BETWEEN 856450 AND 856647 OR

                     `a`.`bug_id` BETWEEN 856670 AND 856720

                ) AND

                NOT (`a`.`bug_id` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     ) AND

                 bug_when >= '1970-01-01 00:00:00'

             ORDER BY

                 bug_id,

                 bug_when DESC,

                 attach_id

   

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

             SELECT bug_id

                 , CAST(null AS signed) AS modified_ts

                 , CAST(null AS char(255)) AS modified_by

                 , 'see_also' AS field_name

                 , CAST(`value` AS char(255)) AS new_value

                 , CAST(null AS char(255)) AS old_value

                 , CAST(null AS signed) AS attach_id

                 , 2 AS _merge_order

             FROM bug_see_also

             WHERE

                 (

           `bug_id` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `bug_id` BETWEEN 856070 AND 856163 OR

                     `bug_id` BETWEEN 856186 AND 856217 OR

                     `bug_id` BETWEEN 856244 AND 856378 OR

                     `bug_id` BETWEEN 856385 AND 856448 OR

                     `bug_id` BETWEEN 856450 AND 856647 OR

                     `bug_id` BETWEEN 856670 AND 856720

                ) AND

                NOT (`bug_id` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     )

             ORDER BY bug_id

   

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

             SELECT bug_id

                 , UNIX_TIMESTAMP(CONVERT_TZ(a.creation_ts, 'US/Pacific','UTC'))*1000 AS modified_ts

                 , lower(login_name) AS modified_by

                 , UNIX_TIMESTAMP(CONVERT_TZ(a.creation_ts, 'US/Pacific','UTC'))*1000 AS created_ts

                 , login_name AS created_by

                 , ispatch AS 'attachments_ispatch'

                 , isobsolete AS 'attachments_isobsolete'

                 , isprivate AS 'attachments_isprivate'

                 , attach_id

             FROM

                 attachments a

                 JOIN profiles p ON a.submitter_id = p.userid

             WHERE

                 (

           `bug_id` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `bug_id` BETWEEN 856070 AND 856163 OR

                     `bug_id` BETWEEN 856186 AND 856217 OR

                     `bug_id` BETWEEN 856244 AND 856378 OR

                     `bug_id` BETWEEN 856385 AND 856448 OR

                     `bug_id` BETWEEN 856450 AND 856647 OR

                     `bug_id` BETWEEN 856670 AND 856720

                ) AND

                NOT (`bug_id` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     ) AND

                 isprivate=0

             ORDER BY

                 bug_id,

                 attach_id,

                 a.creation_ts

   

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

             SELECT bug_id

                 , NULL AS modified_ts

                 , NULL AS modified_by

                 , 'keywords' AS field_name

                 , lower(kd.name) AS new_value

                 , NULL AS old_value

                 , NULL AS attach_id

                 , 2 AS _merge_order

             FROM keywords k

             JOIN keyworddefs kd ON k.keywordid = kd.id

             WHERE

                 (

           `bug_id` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `bug_id` BETWEEN 856070 AND 856163 OR

                     `bug_id` BETWEEN 856186 AND 856217 OR

                     `bug_id` BETWEEN 856244 AND 856378 OR

                     `bug_id` BETWEEN 856385 AND 856448 OR

                     `bug_id` BETWEEN 856450 AND 856647 OR

                     `bug_id` BETWEEN 856670 AND 856720

                ) AND

                NOT (`bug_id` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     )

             ORDER BY bug_id

   

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

             SELECT bug_id

                 , CAST(null AS signed) AS modified_ts

                 , CAST(null AS char(255)) AS modified_by

                 , 'bug_group' AS field_name

                 , lower(CAST(g.`name` AS char(255))) AS new_value

                 , CAST(null AS char(255)) AS old_value

                 , CAST(null AS signed) AS attach_id

                 , 2 AS _merge_order

             FROM bug_group_map bg

             JOIN groups g ON bg.group_id = g.id

             WHERE

                 (

           `bug_id` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `bug_id` BETWEEN 856070 AND 856163 OR

                     `bug_id` BETWEEN 856186 AND 856217 OR

                     `bug_id` BETWEEN 856244 AND 856378 OR

                     `bug_id` BETWEEN 856385 AND 856448 OR

                     `bug_id` BETWEEN 856450 AND 856647 OR

                     `bug_id` BETWEEN 856670 AND 856720

                ) AND

                NOT (`bug_id` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     )

   

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

             SELECT bug_id

                 , CAST(null AS signed) AS modified_ts

                 , CAST(null AS char(255)) AS modified_by

                 , 'cc' AS field_name

                 , lower(CAST(p.login_name AS char(255))) AS new_value

                 , CAST(null AS char(255)) AS old_value

                 , CAST(null AS signed) AS attach_id

                 , 2 AS _merge_order

             FROM

                 cc

             JOIN

                 profiles p ON cc.who = p.userid

             WHERE

                 (

           `bug_id` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `bug_id` BETWEEN 856070 AND 856163 OR

                     `bug_id` BETWEEN 856186 AND 856217 OR

                     `bug_id` BETWEEN 856244 AND 856378 OR

                     `bug_id` BETWEEN 856385 AND 856448 OR

                     `bug_id` BETWEEN 856450 AND 856647 OR

                     `bug_id` BETWEEN 856670 AND 856720

                ) AND

                NOT (`bug_id` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     )

   

22:41:41 - Execute SQL:

     # from https://github.com/klahnakoski/Bugzilla-ETL

    

             SELECT dupe AS bug_id

                 , CAST(null AS signed) AS modified_ts

                 , CAST(null AS char(255)) AS modified_by

                 , 'dupe_of' AS field_name

                 , CAST(dupe_of AS SIGNED) AS new_value

                 , CAST(null AS SIGNED) AS old_value

                 , CAST(null AS signed) AS attach_id

                 , 2 AS _merge_order

             FROM duplicates d

             WHERE

                 (

           `dupe` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `dupe` BETWEEN 856070 AND 856163 OR

                     `dupe` BETWEEN 856186 AND 856217 OR

                     `dupe` BETWEEN 856244 AND 856378 OR

                     `dupe` BETWEEN 856385 AND 856448 OR

                     `dupe` BETWEEN 856450 AND 856647 OR

                     `dupe` BETWEEN 856670 AND 856720

                ) AND

                NOT (`dupe` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     )

             UNION

             SELECT dupe_of

                 , null

                 , null

                 , 'dupe_by'

                 , CAST(dupe AS SIGNED)

                 , null

                 , null

                 , 2

             FROM duplicates d

             WHERE

                 (

           `dupe_of` in (856000, 856001, 856002, 856003, 856004, 856006, 856007, 856008, 856009, 856011, 856012, 856013, 856014, 856015, 856016, 856017, 856018, 856020, 856021, 856022, 856023, 856024, 856025, 856026, 856027, 856028, 856030, 856031, 856032, 856034, 856037, 856038, 856039, 856040, 856041, 856043, 856045, 856047, 856048, 856049, 856050, 856051, 856052, 856053, 856054, 856055, 856056, 856058, 856059, 856062, 856165, 856166, 856167, 856168, 856169, 856170, 856171, 856172, 856176, 856177, 856178, 856179, 856180, 856182, 856183, 856184, 856222, 856223, 856224, 856225, 856226, 856227, 856228, 856229, 856230, 856232, 856233, 856234, 856235, 856238, 856239, 856240, 856241, 856242, 856381, 856383, 856651, 856653, 856654, 856657, 856658, 856659, 856660, 856661, 856662, 856664, 856665, 856666, 856728, 856729, 856731, 856732, 856733, 856734, 856736, 856738, 856739, 856740, 856741, 856742, 856743) OR

           (

                (

                     `dupe_of` BETWEEN 856070 AND 856163 OR

                     `dupe_of` BETWEEN 856186 AND 856217 OR

                     `dupe_of` BETWEEN 856244 AND 856378 OR

                     `dupe_of` BETWEEN 856385 AND 856448 OR

                     `dupe_of` BETWEEN 856450 AND 856647 OR

                     `dupe_of` BETWEEN 856670 AND 856720

                ) AND

                NOT (`dupe_of` in (856091, 856099, 856104, 856106, 856125, 856126, 856135, 856136, 856157, 856161, 856162, 856200, 856259, 856271, 856274, 856293, 856294, 856320, 856326, 856334, 856336, 856343, 856347, 856348, 856374, 856376, 856377, 856395, 856398, 856399, 856416, 856428, 856435, 856446, 856447, 856473, 856480, 856483, 856488, 856510, 856537, 856539, 856563, 856564, 856570, 856573, 856578, 856589, 856597, 856610, 856628, 856636, 856686, 856704, 856706, 856714, 856719))

           )

     )

             ORDER BY bug_id

 

All resultsets in, begin processing   

22:41:42 - Write comments to ElasticSearch

22:41:44 - 6235 aliases loaded

22:41:44 - Matched added flag {

    "modified_by": "trev.saunders@gmail.com",

    "modified_ts": 1364558748000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "trev.saunders@gmail.com",

    "modified_ts": 1364558748000,

    "previous_modified_by": "jmaher@mozilla.com",

    "previous_modified_ts": 1364554888000,

    "previous_status": "?",

    "previous_value": "review?(trev.saunders@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "trev.saunders@gmail.com"

}

22:41:44 - Matched added flag {

    "modified_by": "pwang@mozilla.com",

    "modified_ts": 1364642250000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "pwang@mozilla.com",

    "modified_ts": 1364642250000,

    "previous_modified_by": "justin.lebar+bug@gmail.com",

    "previous_modified_ts": 1364565744000,

    "previous_status": "?",

    "previous_value": "review?(pwang@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "pwang@mozilla.com"

}

22:41:44 - Merging a change with the same timestamp = 856032_1364569551: {

    "_id": "856032_1364569551",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "jan.varga@gmail.com",

    "modified_ts": 1364660485000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "jan.varga@gmail.com",

    "modified_ts": 1364660485000,

    "previous_modified_by": "bent.mozilla@gmail.com",

    "previous_modified_ts": 1364658899000,

    "previous_status": "?",

    "previous_value": "review?(jan.varga@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jan.varga@gmail.com"

}

22:41:44 - Matched added flag {

    "modified_by": "jan.varga@gmail.com",

    "modified_ts": 1364668243000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "jan.varga@gmail.com",

    "modified_ts": 1364668243000,

    "previous_modified_by": "bent.mozilla@gmail.com",

    "previous_modified_ts": 1364668088000,

    "previous_status": "?",

    "previous_value": "review?(jan.varga@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jan.varga@gmail.com"

}

22:41:44 - Matched added flag {

    "modified_by": "bent.mozilla@gmail.com",

    "modified_ts": 1364775170000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bent.mozilla@gmail.com",

    "modified_ts": 1364668088000,

    "previous_modified_ts": 1364666808000,

    "previous_status": "?",

    "previous_value": "review?(jan.varga@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jan.varga@gmail.com"

}

22:41:44 - PROBLEM Unable to find added value in 856037: currBugState.dependson: (All [

    855855

] not in : [])

22:41:44 - Matched added flag {

    "modified_by": "chrislord.net@gmail.com",

    "modified_ts": 1364598226000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "chrislord.net@gmail.com",

    "modified_ts": 1364598226000,

    "previous_modified_by": "bugmail.mozilla@staktrace.com",

    "previous_modified_ts": 1364596572000,

    "previous_status": "?",

    "previous_value": "review?(chrislord.net@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "chrislord.net@gmail.com"

}

22:41:44 - Matched added flag {

    "modified_by": "chrislord.net@gmail.com",

    "modified_ts": 1364598621000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "chrislord.net@gmail.com",

    "modified_ts": 1364598621000,

    "previous_modified_by": "bugmail.mozilla@staktrace.com",

    "previous_modified_ts": 1364596713000,

    "previous_status": "?",

    "previous_value": "review?(chrislord.net@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "chrislord.net@gmail.com"

}

22:41:44 - Matched added flag {

    "modified_by": "chrislord.net@gmail.com",

    "modified_ts": 1364809262000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "chrislord.net@gmail.com",

    "modified_ts": 1364809262000,

    "previous_modified_by": "bugmail.mozilla@staktrace.com",

    "previous_modified_ts": 1364772881000,

    "previous_status": "?",

    "previous_value": "review?(chrislord.net@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "chrislord.net@gmail.com"

}

22:41:44 - Matched added flag {

    "modified_by": "chrislord.net@gmail.com",

    "modified_ts": 1364809525000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "chrislord.net@gmail.com",

    "modified_ts": 1364809525000,

    "previous_modified_by": "bugmail.mozilla@staktrace.com",

    "previous_modified_ts": 1364772920000,

    "previous_status": "?",

    "previous_value": "review?(chrislord.net@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "chrislord.net@gmail.com"

}

22:41:44 - Matched added flag {

    "modified_by": "fyan@mozilla.com",

    "modified_ts": 1364796757000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 1.0,

    "modified_by": "fyan@mozilla.com",

    "modified_ts": 1364796757000,

    "previous_modified_by": "richard.marti@gmail.com",

    "previous_modified_ts": 1364679938000,

    "previous_status": "?",

    "previous_value": "review?(fyan@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "fyan@mozilla.com"

}

22:41:44 - Matched added flag {

    "modified_by": "fyan@mozilla.com",

    "modified_ts": 1364804604000,

    "request_status": "+",

    "request_type": "ui-review",

    "value": "ui-review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "fyan@mozilla.com",

    "modified_ts": 1364804604000,

    "previous_modified_by": "richard.marti@gmail.com",

    "previous_modified_ts": 1364804192000,

    "previous_status": "?",

    "previous_value": "ui-review?(fyan@mozilla.com)",

    "request_status": "d",

    "request_type": "ui-review",

    "requestee": "fyan@mozilla.com"

}

22:41:44 - Merging a change with the same timestamp = 856041_1364571628: {

    "_id": "856041_1364571628",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856049_1364572162: {

    "_id": "856049_1364572162",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856050_1364572194: {

    "_id": "856050_1364572194",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856051_1364572224: {

    "_id": "856051_1364572224",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "dolske@mozilla.com",

    "modified_ts": 1364596759000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "dolske@mozilla.com",

    "modified_ts": 1364596759000,

    "previous_modified_by": "jaws@mozilla.com",

    "previous_modified_ts": 1364572224000,

    "previous_status": "?",

    "previous_value": "review?(bmcbride@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bmcbride@mozilla.com"

}

22:41:44 - PROBLEM: Unable to find CC:

     [

         "silver@warwickcompsoc.co.uk"

     ]

not in:

     []

alias info:

     {

         "bugzilla-mozilla-20020327@james-ross.co.uk": null

     }

22:41:44 - Matched added flag {

    "modified_by": "bugzilla-mozilla-20020327@james-ross.co.uk",

    "modified_ts": 1364766096000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 2.0,

    "modified_by": "bugzilla-mozilla-20020327@james-ross.co.uk",

    "modified_ts": 1364766096000,

    "previous_modified_by": "glenjamin+bmo@gmail.com",

    "previous_modified_ts": 1364575723000,

    "previous_status": "?",

    "previous_value": "review?(silver@warwickcompsoc.co.uk)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "silver@warwickcompsoc.co.uk"

}

22:41:44 - Merging a change with the same timestamp = 856056_1364573124: {

    "_id": "856056_1364573124",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856076_1364575599: {

    "_id": "856076_1364575599",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856078_1364576159: {

    "_id": "856078_1364576159",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "ted@mielczarek.org",

    "modified_ts": 1364579324000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "ted@mielczarek.org",

    "modified_ts": 1364579324000,

    "previous_modified_by": "khuey@kylehuey.com",

    "previous_modified_ts": 1364576159000,

    "previous_status": "?",

    "previous_value": "review?(ted@mielczarek.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "ted@mielczarek.org"

}

22:41:44 - Merging a change with the same timestamp = 856080_1364576552: {

    "_id": "856080_1364576552",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856090_1364578279: {

    "_id": "856090_1364578279",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856102_1364580606: {

    "_id": "856102_1364580606",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856107_1364581547: {

    "_id": "856107_1364581547",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364582666000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364582666000,

    "previous_modified_by": "pidgeot18@gmail.com",

    "previous_modified_ts": 1364582579000,

    "previous_status": "?",

    "previous_value": "review?(bzbarsky@mit.edu)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bzbarsky@mit.edu"

}

22:41:44 - Matched added flag {

    "modified_by": "bobbyholley+bmo@gmail.com",

    "modified_ts": 1364583256000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bobbyholley+bmo@gmail.com",

    "modified_ts": 1364583256000,

    "previous_modified_by": "pidgeot18@gmail.com",

    "previous_modified_ts": 1364582814000,

    "previous_status": "?",

    "previous_value": "review?(bobbyholley+bmo@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bobbyholley+bmo@gmail.com"

}

22:41:44 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364601297000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364601297000,

    "previous_modified_by": "pidgeot18@gmail.com",

    "previous_modified_ts": 1364582696000,

    "previous_status": "?",

    "previous_value": "review?(roc@ocallahan.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "roc@ocallahan.org"

}

22:41:44 - Merging a change with the same timestamp = 856115_1364582256: {

    "_id": "856115_1364582256",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364590180000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364590180000,

    "previous_modified_by": "bobbyholley+bmo@gmail.com",

    "previous_modified_ts": 1364585754000,

    "previous_status": "?",

    "previous_value": "review?(bzbarsky@mit.edu)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bzbarsky@mit.edu"

}

22:41:44 - Matched added flag {

    "modified_by": "jlal@mozilla.com",

    "modified_ts": 1364586855000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "jlal@mozilla.com",

    "modified_ts": 1364586855000,

    "previous_modified_by": "jgriffin@mozilla.com",

    "previous_modified_ts": 1364586129000,

    "previous_status": "?",

    "previous_value": "review?(jlal@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jlal@mozilla.com"

}

22:41:44 - Merging a change with the same timestamp = 856139_1364586870: {

    "_id": "856139_1364586870",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "mbrubeck@mozilla.com",

    "modified_ts": 1364839550000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "mbrubeck@mozilla.com",

    "modified_ts": 1364839550000,

    "previous_modified_by": "jmathies@mozilla.com",

    "previous_modified_ts": 1364829500000,

    "previous_status": "?",

    "previous_value": "review?(mbrubeck@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "mbrubeck@mozilla.com"

}

22:41:44 - Matched added flag {

    "modified_by": "nchen@mozilla.com",

    "modified_ts": 1364827886000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "nchen@mozilla.com",

    "modified_ts": 1364827886000,

    "previous_modified_by": "bnicholson@mozilla.com",

    "previous_modified_ts": 1364800690000,

    "previous_status": "?",

    "previous_value": "review?(nchen@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "nchen@mozilla.com"

}

22:41:44 - Matched added flag {

    "modified_by": "bugmail.mozilla@staktrace.com",

    "modified_ts": 1364832161000,

    "request_status": "-",

    "request_type": "review",

    "value": "review-"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bugmail.mozilla@staktrace.com",

    "modified_ts": 1364832161000,

    "previous_modified_by": "bnicholson@mozilla.com",

    "previous_modified_ts": 1364800636000,

    "previous_status": "?",

    "previous_value": "review?(bugmail.mozilla@staktrace.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bugmail.mozilla@staktrace.com"

}

22:41:44 - Matched added flag {

    "modified_by": "rnewman@mozilla.com",

    "modified_ts": 1364834796000,

    "request_status": "+",

    "request_type": "feedback",

    "value": "feedback+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "rnewman@mozilla.com",

    "modified_ts": 1364834796000,

    "previous_modified_by": "bnicholson@mozilla.com",

    "previous_modified_ts": 1364800636000,

    "previous_status": "?",

    "previous_value": "feedback?(rnewman@mozilla.com)",

    "request_status": "d",

    "request_type": "feedback",

    "requestee": "rnewman@mozilla.com"

}

22:41:44 - Matched added flag {

    "modified_by": "wjohnston@mozilla.com",

    "modified_ts": 1364840196000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 2.0,

    "modified_by": "wjohnston@mozilla.com",

    "modified_ts": 1364840196000,

    "previous_modified_by": "bnicholson@mozilla.com",

    "previous_modified_ts": 1364591065000,

    "previous_status": "?",

    "previous_value": "review?(wjohnston@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "wjohnston@mozilla.com"

}

22:41:44 - Merging a change with the same timestamp = 856165_1364590611: {

    "_id": "856165_1364590611",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856166_1364590696: {

    "_id": "856166_1364590696",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856167_1364590938: {

    "_id": "856167_1364590938",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364590982000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364590982000,

    "previous_modified_by": "bugs@pettay.fi",

    "previous_modified_ts": 1364590938000,

    "previous_status": "?",

    "previous_value": "review?(bzbarsky@mit.edu)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bzbarsky@mit.edu"

}

22:41:44 - Merging a change with the same timestamp = 856169_1364591156: {

    "_id": "856169_1364591156",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856172_1364591559: {

    "_id": "856172_1364591559",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856177_1364592307: {

    "_id": "856177_1364592307",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856184_1364592801: {

    "_id": "856184_1364592801",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856188_1364593157: {

    "_id": "856188_1364593157",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856194_1364593596: {

    "_id": "856194_1364593596",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856196_1364593942: {

    "_id": "856196_1364593942",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "kaie@kuix.de",

    "modified_ts": 1364600598000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "kaie@kuix.de",

    "modified_ts": 1364600598000,

    "previous_modified_by": "wtc@google.com",

    "previous_modified_ts": 1364593942000,

    "previous_status": "?",

    "previous_value": "review?(kaie@kuix.de)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "kaie@kuix.de"

}

22:41:44 - Merging a change with the same timestamp = 856197_1364593996: {

    "_id": "856197_1364593996",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856198_1364594048: {

    "_id": "856198_1364594048",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "dbaron@dbaron.org",

    "modified_ts": 1364601787000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "dbaron@dbaron.org",

    "modified_ts": 1364601787000,

    "previous_modified_by": "dholbert@mozilla.com",

    "previous_modified_ts": 1364594254000,

    "previous_status": "?",

    "previous_value": "review?(dbaron@dbaron.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "dbaron@dbaron.org"

}

22:41:44 - Merging a change with the same timestamp = 856203_1364594515: {

    "_id": "856203_1364594515",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "neil@httl.net",

    "modified_ts": 1364730624000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "neil@httl.net",

    "modified_ts": 1364730624000,

    "previous_modified_by": "bugzilla@mcsmurf.de",

    "previous_modified_ts": 1364690467000,

    "previous_status": "?",

    "previous_value": "review?(neil@httl.net)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "neil@httl.net"

}

22:41:44 - Merging a change with the same timestamp = 856210_1364596214: {

    "_id": "856210_1364596214",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856213_1364596877: {

    "_id": "856213_1364596877",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856225_1364599843: {

    "_id": "856225_1364599843",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856226_1364599974: {

    "_id": "856226_1364599974",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856232_1364601631: {

    "_id": "856232_1364601631",

    "changes": []

}

22:41:44 - Merging a change with the same timestamp = 856235_1364602120: {

    "_id": "856235_1364602120",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "neil@httl.net",

    "modified_ts": 1364721925000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 1.0,

    "modified_by": "neil@httl.net",

    "modified_ts": 1364721925000,

    "previous_modified_by": "acelists@atlas.sk",

    "previous_modified_ts": 1364602587000,

    "previous_status": "?",

    "previous_value": "review?(neil@httl.net)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "neil@httl.net"

}

22:41:44 - Matched added flag {

    "modified_by": "tschneidereit@gmail.com",

    "modified_ts": 1364644634000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "tschneidereit@gmail.com",

    "modified_ts": 1364644634000,

    "previous_modified_by": "nmatsakis@mozilla.com",

    "previous_modified_ts": 1364604514000,

    "previous_status": "?",

    "previous_value": "review?(tschneidereit@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "tschneidereit@gmail.com"

}

22:41:44 - Merging a change with the same timestamp = 856249_1364604428: {

    "_id": "856249_1364604428",

    "changes": []

}

22:41:44 - Matched added flag {

    "modified_by": "linux.anas@gmail.com",

    "modified_ts": 1364632598000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "linux.anas@gmail.com",

    "modified_ts": 1364632598000,

    "previous_modified_by": "pascalc@gmail.com",

    "previous_modified_ts": 1364604757000,

    "previous_status": "?",

    "previous_value": "review?(linux.anas@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "linux.anas@gmail.com"

}

22:41:44 - PROBLEM Unable to find added FLAG: attachment.flags: (All review+ not in : [

    {

        "modified_by": "eitan@monotonous.org",

        "modified_ts": 1364605634000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "sriram@mozilla.com",

        "value": "review?(sriram@mozilla.com)"

    }

])

22:41:44 - Matched added flag {

    "modified_by": "sriram@mozilla.com",

    "modified_ts": 1364837910000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to multiple removed flags [

    {

        "duration_days": 0.0,

        "modified_by": "bugmail.mozilla@staktrace.com",

        "modified_ts": 1364614721000,

        "previous_modified_by": "eitan@monotonous.org",

        "previous_modified_ts": 1364605634000,

        "previous_status": "?",

        "previous_value": "review?(bugmail.mozilla@staktrace.com)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "bugmail.mozilla@staktrace.com"

    },

    {

        "duration_days": 2.0,

        "modified_by": "sriram@mozilla.com",

        "modified_ts": 1364837910000,

        "previous_modified_by": "bugmail.mozilla@staktrace.com",

        "previous_modified_ts": 1364614721000,

        "previous_status": "?",

        "previous_value": "review?(sriram@mozilla.com)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "sriram@mozilla.com"

    }

].  Using the best.

22:41:44 - Matching on modified_ts fixed it

22:41:45 - Merging a change with the same timestamp = 856258_1364608830: {

    "_id": "856258_1364608830",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "anygregor@gmail.com",

    "modified_ts": 1364613077000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "anygregor@gmail.com",

    "modified_ts": 1364613077000,

    "previous_modified_by": "reuben.bmo@gmail.com",

    "previous_modified_ts": 1364610265000,

    "previous_status": "?",

    "previous_value": "review?(anygregor@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "anygregor@gmail.com"

}

22:41:45 - Merging a change with the same timestamp = 856262_1364610537: {

    "_id": "856262_1364610537",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856265_1364615007: {

    "_id": "856265_1364615007",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856266_1364615595: {

    "_id": "856266_1364615595",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856268_1364616732: {

    "_id": "856268_1364616732",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856269_1364617051: {

    "_id": "856269_1364617051",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856272_1364618927: {

    "_id": "856272_1364618927",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "doug.turner@gmail.com",

    "modified_ts": 1364666320000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "doug.turner@gmail.com",

    "modified_ts": 1364666320000,

    "previous_modified_by": "nsm.nikhil@gmail.com",

    "previous_modified_ts": 1364626580000,

    "previous_status": "?",

    "previous_value": "review?(doug.turner@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "doug.turner@gmail.com"

}

22:41:45 - Merging a change with the same timestamp = 856300_1364642424: {

    "_id": "856300_1364642424",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856303_1364643506: {

    "_id": "856303_1364643506",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856317_1364654058: {

    "_id": "856317_1364654058",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856318_1364656144: {

    "_id": "856318_1364656144",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "ethanhugg@gmail.com",

    "modified_ts": 1364668126000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "ethanhugg@gmail.com",

    "modified_ts": 1364668126000,

    "previous_modified_by": "rjesup@jesup.org",

    "previous_modified_ts": 1364656831000,

    "previous_status": "?",

    "previous_value": "review?(ethanhugg@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "ethanhugg@gmail.com"

}

22:41:45 - Matched added flag {

    "modified_by": "ethanhugg@gmail.com",

    "modified_ts": 1364675051000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "ethanhugg@gmail.com",

    "modified_ts": 1364675051000,

    "previous_modified_by": "rjesup@jesup.org",

    "previous_modified_ts": 1364669967000,

    "previous_status": "?",

    "previous_value": "review?(ethanhugg@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "ethanhugg@gmail.com"

}

22:41:45 - Matched added flag {

    "modified_by": "neil@httl.net",

    "modified_ts": 1364684790000,

    "request_status": "-",

    "request_type": "review",

    "value": "review-"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "neil@httl.net",

    "modified_ts": 1364684790000,

    "previous_modified_by": "philip.chee@gmail.com",

    "previous_modified_ts": 1364659376000,

    "previous_status": "?",

    "previous_value": "review?(neil@httl.net)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "neil@httl.net"

}

22:41:45 - Merging a change with the same timestamp = 856339_1364667352: {

    "_id": "856339_1364667352",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "jmathies@mozilla.com",

    "modified_ts": 1364699611000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "jmathies@mozilla.com",

    "modified_ts": 1364699611000,

    "previous_modified_by": "ehsan@mozilla.com",

    "previous_modified_ts": 1364667352000,

    "previous_status": "?",

    "previous_value": "review?(jmathies@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jmathies@mozilla.com"

}

22:41:45 - Merging a change with the same timestamp = 856341_1364667735: {

    "_id": "856341_1364667735",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "jfkthame@gmail.com",

    "modified_ts": 1364670171000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "jfkthame@gmail.com",

    "modified_ts": 1364670171000,

    "previous_modified_by": "ehsan@mozilla.com",

    "previous_modified_ts": 1364667735000,

    "previous_status": "?",

    "previous_value": "review?(jfkthame@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jfkthame@gmail.com"

}

22:41:45 - Merging a change with the same timestamp = 856344_1364669051: {

    "_id": "856344_1364669051",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856346_1364669546: {

    "_id": "856346_1364669546",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856350_1364672846: {

    "_id": "856350_1364672846",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "archaeopteryx@coole-files.de",

    "modified_ts": 1364676972000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "archaeopteryx@coole-files.de",

    "modified_ts": 1364676972000,

    "previous_modified_by": "mkmelin+mozilla@iki.fi",

    "previous_modified_ts": 1364672846000,

    "previous_status": "?",

    "previous_value": "review?(archaeopteryx@coole-files.de)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "archaeopteryx@coole-files.de"

}

22:41:45 - Merging a change with the same timestamp = 856351_1364673526: {

    "_id": "856351_1364673526",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856357_1364676910: {

    "_id": "856357_1364676910",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856363_1364681379: {

    "_id": "856363_1364681379",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856367_1364682810: {

    "_id": "856367_1364682810",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364781086000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 1.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364781086000,

    "previous_modified_by": "matspal@gmail.com",

    "previous_modified_ts": 1364683527000,

    "previous_status": "?",

    "previous_value": "review?(roc@ocallahan.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "roc@ocallahan.org"

}

22:41:45 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364781428000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 1.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364781428000,

    "previous_modified_by": "matspal@gmail.com",

    "previous_modified_ts": 1364683775000,

    "previous_status": "?",

    "previous_value": "review?(roc@ocallahan.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "roc@ocallahan.org"

}

22:41:45 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364781458000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 1.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364781458000,

    "previous_modified_by": "matspal@gmail.com",

    "previous_modified_ts": 1364683829000,

    "previous_status": "?",

    "previous_value": "review?(roc@ocallahan.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "roc@ocallahan.org"

}

22:41:45 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364781490000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 1.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364781490000,

    "previous_modified_by": "matspal@gmail.com",

    "previous_modified_ts": 1364683871000,

    "previous_status": "?",

    "previous_value": "review?(roc@ocallahan.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "roc@ocallahan.org"

}

22:41:45 - Matched added flag {

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364781523000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 1.0,

    "modified_by": "roc@ocallahan.org",

    "modified_ts": 1364781523000,

    "previous_modified_by": "matspal@gmail.com",

    "previous_modified_ts": 1364683993000,

    "previous_status": "?",

    "previous_value": "review?(roc@ocallahan.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "roc@ocallahan.org"

}

22:41:45 - Merging a change with the same timestamp = 856371_1364685044: {

    "_id": "856371_1364685044",

    "changes": []

}

22:41:45 - PROBLEM Unable to find added value in 856375: currBugState.blocked: (All [

    846759

] not in : [])

22:41:45 - Matched added flag {

    "modified_by": "ydelendik@mozilla.com",

    "modified_ts": 1364830220000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "ydelendik@mozilla.com",

    "modified_ts": 1364830220000,

    "previous_modified_by": "ryanvm@gmail.com",

    "previous_modified_ts": 1364829961000,

    "previous_status": "?",

    "previous_value": "review?(ydelendik@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "ydelendik@mozilla.com"

}

22:41:45 - Merging a change with the same timestamp = 856394_1364715434: {

    "_id": "856394_1364715434",

    "changes": []

}

22:41:45 - PROBLEM Unable to find added FLAG: attachment.flags: (All review+ not in : [

    {

        "modified_by": "rjesup@jesup.org",

        "modified_ts": 1364719357000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "jsmith@mozilla.com",

        "value": "review?(jsmith@mozilla.com)"

    },

    {

        "modified_by": "rjesup@jesup.org",

        "modified_ts": 1364719357000,

        "request_status": "?",

        "request_type": "review",

        "requestee": "hskupin@gmail.com",

        "value": "review?(hskupin@gmail.com)"

    }

])

22:41:45 - Merging a change with the same timestamp = 856397_1364719357: {

    "_id": "856397_1364719357",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "jsmith@mozilla.com",

    "modified_ts": 1364764795000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to multiple removed flags [

    {

        "duration_days": 0.0,

        "modified_by": "jsmith@mozilla.com",

        "modified_ts": 1364764795000,

        "previous_modified_by": "rjesup@jesup.org",

        "previous_modified_ts": 1364719357000,

        "previous_status": "?",

        "previous_value": "review?(hskupin@gmail.com)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "hskupin@gmail.com"

    },

    {

        "duration_days": 0.0,

        "modified_by": "jsmith@mozilla.com",

        "modified_ts": 1364764795000,

        "previous_modified_by": "rjesup@jesup.org",

        "previous_modified_ts": 1364719357000,

        "previous_status": "?",

        "previous_value": "review?(jsmith@mozilla.com)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "jsmith@mozilla.com"

    }

].  Using the best.

22:41:45 - Matching on modified_ts left us with 2 matches

22:41:45 - Matching on requestee fixed it

22:41:45 - Merging a change with the same timestamp = 856401_1364720606: {

    "_id": "856401_1364720606",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "rjesup@jesup.org",

    "modified_ts": 1364734494000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "rjesup@jesup.org",

    "modified_ts": 1364734494000,

    "previous_modified_by": "tuexen@fh-muenster.de",

    "previous_modified_ts": 1364722991000,

    "previous_status": "?",

    "previous_value": "review?(rjesup@jesup.org)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "rjesup@jesup.org"

}

22:41:45 - Merging a change with the same timestamp = 856402_1364721265: {

    "_id": "856402_1364721265",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "philip.chee@gmail.com",

    "modified_ts": 1364812120000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 1.0,

    "modified_by": "philip.chee@gmail.com",

    "modified_ts": 1364812120000,

    "previous_modified_by": "neil@httl.net",

    "previous_modified_ts": 1364724520000,

    "previous_status": "?",

    "previous_value": "review?(philip.chee@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "philip.chee@gmail.com"

}

22:41:45 - Merging a change with the same timestamp = 856407_1364724648: {

    "_id": "856407_1364724648",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "rjesup@jesup.org",

    "modified_ts": 1364737860000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to multiple removed flags [

    {

        "duration_days": 0.0,

        "modified_by": "mcmanus@ducksong.com",

        "modified_ts": 1364737204000,

        "previous_modified_by": "georgiana.chelu93@gmail.com",

        "previous_modified_ts": 1364729263000,

        "previous_status": "?",

        "previous_value": "review?(bsmith@mozilla.com)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "bsmith@mozilla.com"

    },

    {

        "duration_days": 0.0,

        "modified_by": "rjesup@jesup.org",

        "modified_ts": 1364737860000,

        "previous_modified_by": "mcmanus@ducksong.com",

        "previous_modified_ts": 1364737204000,

        "previous_status": "?",

        "previous_value": "review?(rjesup@jesup.org)",

        "request_status": "d",

        "request_type": "review",

        "requestee": "rjesup@jesup.org"

    }

].  Using the best.

22:41:45 - Matching on modified_ts fixed it

22:41:45 - Matched added flag {

    "modified_by": "trev.saunders@gmail.com",

    "modified_ts": 1364754281000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "trev.saunders@gmail.com",

    "modified_ts": 1364754281000,

    "previous_modified_by": "bindarel@yahoo.com",

    "previous_modified_ts": 1364729137000,

    "previous_status": "?",

    "previous_value": "review?(trev.saunders@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "trev.saunders@gmail.com"

}

22:41:45 - Matched added flag {

    "modified_by": "trev.saunders@gmail.com",

    "modified_ts": 1364767940000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "trev.saunders@gmail.com",

    "modified_ts": 1364767940000,

    "previous_modified_by": "bindarel@yahoo.com",

    "previous_modified_ts": 1364762571000,

    "previous_status": "?",

    "previous_value": "review?(trev.saunders@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "trev.saunders@gmail.com"

}

22:41:45 - Merging a change with the same timestamp = 856411_1364735923: {

    "_id": "856411_1364735923",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856419_1364741249: {

    "_id": "856419_1364741249",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856423_1364743272: {

    "_id": "856423_1364743272",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856425_1364743953: {

    "_id": "856425_1364743953",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856427_1364744554: {

    "_id": "856427_1364744554",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856430_1364746189: {

    "_id": "856430_1364746189",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856433_1364749272: {

    "_id": "856433_1364749272",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856444_1364754369: {

    "_id": "856444_1364754369",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856450_1364758984: {

    "_id": "856450_1364758984",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "bwinton@mozilla.com",

    "modified_ts": 1364838720000,

    "request_status": "-",

    "request_type": "ui-review",

    "value": "ui-review-"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bwinton@mozilla.com",

    "modified_ts": 1364838720000,

    "previous_modified_by": "richard.marti@gmail.com",

    "previous_modified_ts": 1364759358000,

    "previous_status": "?",

    "previous_value": "ui-review?(bwinton@mozilla.com)",

    "request_status": "d",

    "request_type": "ui-review",

    "requestee": "bwinton@mozilla.com"

}

22:41:45 - Merging a change with the same timestamp = 856452_1364759668: {

    "_id": "856452_1364759668",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856455_1364760429: {

    "_id": "856455_1364760429",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856456_1364761419: {

    "_id": "856456_1364761419",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856467_1364763569: {

    "_id": "856467_1364763569",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856468_1364763995: {

    "_id": "856468_1364763995",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856470_1364765375: {

    "_id": "856470_1364765375",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856472_1364767509: {

    "_id": "856472_1364767509",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364836492000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364836492000,

    "previous_modified_by": "dzbarsky@gmail.com",

    "previous_modified_ts": 1364767509000,

    "previous_status": "?",

    "previous_value": "review?(bzbarsky@mit.edu)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bzbarsky@mit.edu"

}

22:41:45 - Merging a change with the same timestamp = 856474_1364768046: {

    "_id": "856474_1364768046",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856476_1364769041: {

    "_id": "856476_1364769041",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856477_1364770271: {

    "_id": "856477_1364770271",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856482_1364774087: {

    "_id": "856482_1364774087",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856484_1364775011: {

    "_id": "856484_1364775011",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "surkov.alexander@gmail.com",

    "modified_ts": 1364781117000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "surkov.alexander@gmail.com",

    "modified_ts": 1364781117000,

    "previous_modified_by": "trev.saunders@gmail.com",

    "previous_modified_ts": 1364778088000,

    "previous_status": "?",

    "previous_value": "review?(surkov.alexander@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "surkov.alexander@gmail.com"

}

22:41:45 - Merging a change with the same timestamp = 856491_1364780868: {

    "_id": "856491_1364780868",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856492_1364780907: {

    "_id": "856492_1364780907",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856497_1364783790: {

    "_id": "856497_1364783790",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856499_1364784339: {

    "_id": "856499_1364784339",

    "changes": []

}

22:41:45 - Merging a change with the same timestamp = 856518_1364796537: {

    "_id": "856518_1364796537",

    "changes": []

}

22:41:45 - Matched added flag {

    "modified_by": "jmaher@mozilla.com",

    "modified_ts": 1364840032000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "jmaher@mozilla.com",

    "modified_ts": 1364840032000,

    "previous_modified_by": "adrian.tamas@softvision.ro",

    "previous_modified_ts": 1364796772000,

    "previous_status": "?",

    "previous_value": "review?(jmaher@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jmaher@mozilla.com"

}

22:41:46 - Matched added flag {

    "modified_by": "allstars.chh@mozilla.com",

    "modified_ts": 1364802216000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "allstars.chh@mozilla.com",

    "modified_ts": 1364802216000,

    "previous_modified_by": "htsai@mozilla.com",

    "previous_modified_ts": 1364801327000,

    "previous_status": "?",

    "previous_value": "review?(allstars.chh@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "allstars.chh@mozilla.com"

}

22:41:46 - Matched added flag {

    "modified_by": "jmcf@tid.es",

    "modified_ts": 1364822363000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "jmcf@tid.es",

    "modified_ts": 1364822363000,

    "previous_modified_by": "salva@unoyunodiez.com",

    "previous_modified_ts": 1364816514000,

    "previous_status": "?",

    "previous_value": "review?(jmcf@tid.es)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jmcf@tid.es"

}

22:41:46 - Matched added flag {

    "modified_by": "jmcf@tid.es",

    "modified_ts": 1364825262000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "jmcf@tid.es",

    "modified_ts": 1364825262000,

    "previous_modified_by": "crdlc@tid.es",

    "previous_modified_ts": 1364803571000,

    "previous_status": "?",

    "previous_value": "review?(jmcf@tid.es)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jmcf@tid.es"

}

22:41:46 - Matched added flag {

    "modified_by": "jmcf@tid.es",

    "modified_ts": 1364822285000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "jmcf@tid.es",

    "modified_ts": 1364822285000,

    "previous_modified_by": "salva@unoyunodiez.com",

    "previous_modified_ts": 1364814753000,

    "previous_status": "?",

    "previous_value": "review?(jmcf@tid.es)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jmcf@tid.es"

}

22:41:46 - Merging a change with the same timestamp = 856561_1364808202: {

    "_id": "856561_1364808202",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856566_1364811678: {

    "_id": "856566_1364811678",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856576_1364819444: {

    "_id": "856576_1364819444",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856582_1364821968: {

    "_id": "856582_1364821968",

    "changes": []

}

22:41:46 - PROBLEM Unable to find added value in 856584: currBugState.dependson: (All [

    845487

] not in : [])

22:41:46 - Matched added flag {

    "modified_by": "jmcf@tid.es",

    "modified_ts": 1364825073000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "jmcf@tid.es",

    "modified_ts": 1364825073000,

    "previous_modified_by": "crdlc@tid.es",

    "previous_modified_ts": 1364823536000,

    "previous_status": "?",

    "previous_value": "review?(jmcf@tid.es)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "jmcf@tid.es"

}

22:41:46 - Merging a change with the same timestamp = 856590_1364823531: {

    "_id": "856590_1364823531",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856591_1364823841: {

    "_id": "856591_1364823841",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856605_1364825962: {

    "_id": "856605_1364825962",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856611_1364826232: {

    "_id": "856611_1364826232",

    "changes": []

}

22:41:46 - Matched added flag {

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364834181000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364834181000,

    "previous_modified_by": "ms2ger@gmail.com",

    "previous_modified_ts": 1364826232000,

    "previous_status": "?",

    "previous_value": "review?(bzbarsky@mit.edu)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bzbarsky@mit.edu"

}

22:41:46 - Merging a change with the same timestamp = 856613_1364826383: {

    "_id": "856613_1364826383",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856616_1364827306: {

    "_id": "856616_1364827306",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856633_1364830123: {

    "_id": "856633_1364830123",

    "changes": []

}

22:41:46 - Matched added flag {

    "modified_by": "dolske@mozilla.com",

    "modified_ts": 1364834720000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "dolske@mozilla.com",

    "modified_ts": 1364834720000,

    "previous_modified_by": "edilee@mozilla.com",

    "previous_modified_ts": 1364831166000,

    "previous_status": "?",

    "previous_value": "review?(dolske@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "dolske@mozilla.com"

}

22:41:46 - Merging a change with the same timestamp = 856660_1364834653: {

    "_id": "856660_1364834653",

    "changes": []

}

22:41:46 - Matched added flag {

    "modified_by": "bgirard@mozilla.com",

    "modified_ts": 1364837500000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bgirard@mozilla.com",

    "modified_ts": 1364837500000,

    "previous_modified_by": "vd@freebsd.org",

    "previous_modified_ts": 1364836385000,

    "previous_status": "?",

    "previous_value": "review?(bgirard@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bgirard@mozilla.com"

}

22:41:46 - Merging a change with the same timestamp = 856678_1364836291: {

    "_id": "856678_1364836291",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856688_1364836972: {

    "_id": "856688_1364836972",

    "changes": []

}

22:41:46 - Matched added flag {

    "modified_by": "justin.lebar+bug@gmail.com",

    "modified_ts": 1364838540000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "justin.lebar+bug@gmail.com",

    "modified_ts": 1364838540000,

    "previous_modified_by": "trev.saunders@gmail.com",

    "previous_modified_ts": 1364838346000,

    "previous_status": "?",

    "previous_value": "review?(justin.lebar+bug@gmail.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "justin.lebar+bug@gmail.com"

}

22:41:46 - Merging a change with the same timestamp = 856701_1364838145: {

    "_id": "856701_1364838145",

    "changes": []

}

22:41:46 - Matched added flag {

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364838671000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "bzbarsky@mit.edu",

    "modified_ts": 1364838671000,

    "previous_modified_by": "trev.saunders@gmail.com",

    "previous_modified_ts": 1364838493000,

    "previous_status": "?",

    "previous_value": "review?(bzbarsky@mit.edu)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "bzbarsky@mit.edu"

}

22:41:46 - Merging a change with the same timestamp = 856715_1364839604: {

    "_id": "856715_1364839604",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856716_1364839679: {

    "_id": "856716_1364839679",

    "changes": []

}

22:41:46 - Merging a change with the same timestamp = 856729_1364840461: {

    "_id": "856729_1364840461",

    "changes": []

}

22:41:46 - Matched added flag {

    "modified_by": "catlee@mozilla.com",

    "modified_ts": 1364841905000,

    "request_status": "+",

    "request_type": "review",

    "value": "review+"

} to removed flag {

    "duration_days": 0.0,

    "modified_by": "catlee@mozilla.com",

    "modified_ts": 1364841905000,

    "previous_modified_by": "bhearsum@mozilla.com",

    "previous_modified_ts": 1364841677000,

    "previous_status": "?",

    "previous_value": "review?(catlee@mozilla.com)",

    "request_status": "d",

    "request_type": "review",

    "requestee": "catlee@mozilla.com"

}

22:41:46 - Waiting on thread etl comments

22:41:51 - Waiting on thread threaded queue

Done