NOTE: this changes the numeric values of the MIGRATION_XXX constants! Order is preserved. Bug: T197619 Change-Id: I16db7dd5799ab98c1cb12e7cd1e0b2da83b366fc
23 lines
444 B
PHP
23 lines
444 B
PHP
<?php
|
|
use MediaWiki\Tests\Storage\McrReadNewSchemaOverride;
|
|
|
|
/**
|
|
* Tests Revision against the intermediate MCR DB schema for use during schema migration.
|
|
*
|
|
* @covers Revision
|
|
*
|
|
* @group Revision
|
|
* @group Storage
|
|
* @group ContentHandler
|
|
* @group Database
|
|
* @group medium
|
|
*/
|
|
class RevisionMcrReadNewDbTest extends RevisionDbTestBase {
|
|
|
|
use McrReadNewSchemaOverride;
|
|
|
|
protected function getContentHandlerUseDB() {
|
|
return true;
|
|
}
|
|
|
|
}
|