Dear Ariel,
An update for the `mwxml2sql' utility has been pushed to gerrit for your review.
1) Features
Extend maximum allowed mediawiki version to 1.26.
Extend maximum allowed XML dump schema to 0.10.
2) Database schemata
The `page' table has been updated:
o page_counter is removed;
o page_links_updated is repositioned; and
o page_lang is added.
The `revision' table has been updated:
o rev_comment is resized (was tinyblob, now is varbinary(767)).
3) Test
(shell) mwxml2sql -m 1.22,1.23,1.24,1.25,1.26 \
-s simplewiki-20150603-stub-articles.xml.gz \
-t simplewiki-20150603-pages-articles.xml.bz2 \
-f simplewiki-20150603.gz
(shell) zcat simplewiki-20150603-createtables.sql-1.26.gz | \
mysql --host=localhost --user=root --password
(shell) zcat simplewiki-20150603-page.sql-1.26.gz | \
mysql --host=localhost --user=root --password
(shell) zcat simplewiki-20150603-revision.sql-1.26.gz | \
mysql --host=localhost --user=root --password
(shell) zcat simplewiki-20150603-text.sql-1.26.gz | \
mysql --host=localhost --user=root --password
Sincerely Yours,
Kent