Merge "ApiQueryLinks: Remove index forcing"
[lhc/web/wiklou.git] / maintenance / populatePPSortKey.php
index 519c665..7e3c2c3 100644 (file)
@@ -43,6 +43,7 @@ class PopulatePPSortKey extends LoggedUpdateMaintenance {
                $lastPageValue = 0;
                $editedRowCount = 0;
 
+               $this->output( "Populating page_props.pp_sortkey...\n" );
                while ( true ) {
                        $conditions = [ 'pp_sortkey IS NULL' ];
                        if ( $lastPageValue !== 0 ) {
@@ -88,12 +89,12 @@ class PopulatePPSortKey extends LoggedUpdateMaintenance {
                        $this->commitTransaction( $dbw, __METHOD__ );
 
                        // We need to get the last element's page ID
-                       $lastPageValue = $row->pp_value;
+                       $lastPageValue = $row->pp_page;
                        // And the propname...
                        $lastProp = $row->pp_propname;
                }
 
-               $this->output( "Done!\n" );
+               $this->output( "Populating page_props.pp_sortkey complete.\n" );
        }
 
        protected function getUpdateKey() {