Index: trunk/phase3/includes/installer/DatabaseUpdater.php |
— | — | @@ -570,10 +570,11 @@ |
571 | 571 | "Populating log_user_text field, printing progress markers. For large\n" . |
572 | 572 | "databases, you may want to hit Ctrl-C and do this manually with\n" . |
573 | 573 | "maintenance/populateLogUsertext.php.\n" ); |
| 574 | + |
| 575 | + $task = $this->maintenance->runChild( 'PopulateLogUsertext' ); |
| 576 | + $task->execute(); |
| 577 | + $this->insertUpdateRow( 'populate log_usertext' ); |
574 | 578 | } |
575 | | - $task = $this->maintenance->runChild( 'PopulateLogUsertext' ); |
576 | | - $task->execute(); |
577 | | - $this->insertUpdateRow( 'populate log_usertext' ); |
578 | 579 | } |
579 | 580 | |
580 | 581 | protected function doLogSearchPopulation() { |
— | — | @@ -582,10 +583,11 @@ |
583 | 584 | "Populating log_search table, printing progress markers. For large\n" . |
584 | 585 | "databases, you may want to hit Ctrl-C and do this manually with\n" . |
585 | 586 | "maintenance/populateLogSearch.php.\n" ); |
| 587 | + |
| 588 | + $task = $this->maintenance->runChild( 'PopulateLogSearch' ); |
| 589 | + $task->execute(); |
| 590 | + $this->insertUpdateRow( 'populate log_search' ); |
586 | 591 | } |
587 | | - $task = $this->maintenance->runChild( 'PopulateLogSearch' ); |
588 | | - $task->execute(); |
589 | | - $this->insertUpdateRow( 'populate log_search' ); |
590 | 592 | } |
591 | 593 | |
592 | 594 | protected function doUpdateTranscacheField() { |
Index: trunk/phase3/includes/installer/MysqlUpdater.php |
— | — | @@ -755,10 +755,11 @@ |
756 | 756 | "Populating rev_parent_id fields, printing progress markers. For large\n" . |
757 | 757 | "databases, you may want to hit Ctrl-C and do this manually with\n" . |
758 | 758 | "maintenance/populateParentId.php.\n" ); |
| 759 | + |
| 760 | + $task = $this->maintenance->runChild( 'PopulateParentId' ); |
| 761 | + $task->execute(); |
| 762 | + $this->insertUpdateRow( 'populate rev_parent_id' ); |
759 | 763 | } |
760 | | - $task = $this->maintenance->runChild( 'PopulateParentId' ); |
761 | | - $task->execute(); |
762 | | - $this->insertUpdateRow( 'populate rev_parent_id' ); |
763 | 764 | } |
764 | 765 | |
765 | 766 | protected function doMaybeProfilingMemoryUpdate() { |