Handbuch:populateParentId.php

This page is a translated version of the page Manual:PopulateParentId.php and the translation is 47% complete.
MediaWiki Version:
1.35

Details

populateParentId.php is a maintenance script to make the required database updates for revision.rev_parent_id to be of any use.

This script was removed for MediaWiki version 1.36 and later.

This script runs by default when you run Manual:update.php .

Geschichte

The first versions of populateParentId.php sorted the rev_parent_id linked list (at least with regard to those rows that had a null rev_parent_id) strictly by revision.rev_id. It assumed that the previous revision of the title was the original previous revision of the title when the edit was made. This behavior was changed by Aaron Schulz because it could result in loops.

The way it works now is that, after populateParentId.php selects the rows with null rev_parent_id, when it is dealing with a particular revision, first it checks for rows with the same revision.rev_timestamp as that revision, that have with a smaller rev_id than that revision. Die höchste ID "gewinnt". This avoids loops as the timestamp can only decrease and never loops with IDs (from parent to parent). If there are no rows with the same timestamp, then it uses the highest ID with a lower timestamp.

Optionen

Dieses Skript nimmt keine Optionen an.

Verwendung

php maintenance/populateParentId.php
Terminal
The script returns "rev_parent_id column of revision table already populated", run the script with the --force argument.

See also