Mark A. Hershberger wrote:
The number of un-reviewed revisions for 1.18 has dropped below 500 for all of /trunk and below 200 for phase3:
mysql> select count(*),cr_status from code_rev where cr_repo_id = 1 \ and cr_id > 47450 and cr_id < 87529 and cr_path like \ '/trunk%' group by cr_status; +----------+-----------+ | count(*) | cr_status | +----------+-----------+ | 13951 | deferred | | 82 | fixme | | 339 | new | | 16534 | ok | | 1240 | old | | 1585 | resolved | | 793 | reverted | +----------+-----------+ 7 rows in set (0.06 sec) mysql>
Your bounds seem a little strange here. I don't understand the lower bound in particular. Is there some special significance to r47450? The upper bound would most logically be r87519 given the "Branch points" document.[1] Clarification on the meaning behind these values would be appreciated. :-)
MZMcBride