https://bugzilla.wikimedia.org/show_bug.cgi?id=43571

--- Comment #4 from physikerwelt <[email protected]> ---
Yes I ran the update.php script again.

Following hack resolved the error:
diff --git a/tests/phpunit/MediaWikiTestCase.php
b/tests/phpunit/MediaWikiTestCa
index cbf9a8e..7bb81f9 100644
--- a/tests/phpunit/MediaWikiTestCase.php
+++ b/tests/phpunit/MediaWikiTestCase.php
@@ -521,7 +521,11 @@ abstract class MediaWikiTestCase extends
PHPUnit_Framework_
        static private function isNotUnittest( $table ) {
                return strpos( $table, 'unittest_' ) !== 0;
        }
-
+
+       static private function isNotView( $table ) {
+               return strpos( $table, 'view_' ) !== 0;
+       }
+
        public static function listTables( $db ) {
                global $wgDBprefix;

@@ -531,6 +535,9 @@ abstract class MediaWikiTestCase extends
PHPUnit_Framework_T
                // Don't duplicate test tables from the previous fataled run
                $tables = array_filter( $tables, array( __CLASS__,
'isNotUnittes

+               // Don't duplicate test tables from the previous fataled run
+               $tables = array_filter( $tables, array( __CLASS__, 'isNotView'
)

Product    Version
MediaWiki    1.21alpha (ba16916)
PHP    5.4.4-10 (apache2handler)
MySQL    5.5.28-1

Maybe the problem is that the listtable implementation of the mysql database
acess also lists the views.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to