Index: trunk/phase3/includes/installer/DatabaseUpdater.php |
— | — | @@ -573,6 +573,7 @@ |
574 | 574 | } |
575 | 575 | $task = $this->maintenance->runChild( 'PopulateLogUsertext' ); |
576 | 576 | $task->execute(); |
| 577 | + $this->insertUpdateRow( 'populate log_usertext' ); |
577 | 578 | } |
578 | 579 | |
579 | 580 | protected function doLogSearchPopulation() { |
— | — | @@ -584,6 +585,7 @@ |
585 | 586 | } |
586 | 587 | $task = $this->maintenance->runChild( 'PopulateLogSearch' ); |
587 | 588 | $task->execute(); |
| 589 | + $this->insertUpdateRow( 'populate log_search' ); |
588 | 590 | } |
589 | 591 | |
590 | 592 | protected function doUpdateTranscacheField() { |
Index: trunk/phase3/includes/installer/MysqlUpdater.php |
— | — | @@ -758,6 +758,7 @@ |
759 | 759 | } |
760 | 760 | $task = $this->maintenance->runChild( 'PopulateParentId' ); |
761 | 761 | $task->execute(); |
| 762 | + $this->insertUpdateRow( 'populate rev_parent_id' ); |
762 | 763 | } |
763 | 764 | |
764 | 765 | protected function doMaybeProfilingMemoryUpdate() { |