Manual:$wgCommentTempTableSchemaMigrationStage

From mediawiki.org
This page is a translated version of the page Manual:$wgCommentTempTableSchemaMigrationStage and the translation is 50% complete.
データベースの設定: $wgCommentTempTableSchemaMigrationStage
Comment temp tables schema migration stage.
導入されたバージョン:1.40.0 (Gerrit change 872985; git #cf127211)
除去されたバージョン:1.41.0 (Gerrit change 924123; git #27beeac2)
許容される値:(配列)
既定値:[]

詳細

Comment temp tables schema migration stage. Use the SCHEMA_COMPAT_XXX flags.

The default value is an empty array, which is equivalent to:

[
    'rev_comment' => MIGRATION_OLD,
]

To perform the migration, set this configuration variable to write to both tables but read from old temp table:

[
    'rev_comment' => SCHEMA_COMPAT_WRITE_BOTH | SCHEMA_COMPAT_READ_OLD,
]

Then, run Manual:migrateRevisionCommentTemp.php to backfill the new table.

Once the script has completed, for testing, this configuration can be changed to still write to both tables but read only from new table (done in Gerrit change 923749). This allows easy rollback to read from the old table in case bugs or incompatibilities are found:

[
    'rev_comment' => SCHEMA_COMPAT_WRITE_BOTH | SCHEMA_COMPAT_READ_NEW,
]