Remove db2 support, core MW did this a while ago

Change-Id: I78124660e7bad31c81726e8723d73ce92af42e4d
This commit is contained in:
Reedy 2014-01-02 15:13:45 +00:00
parent 0ab1280d6b
commit 9af76a77eb
2 changed files with 0 additions and 8 deletions

View File

@ -129,7 +129,6 @@ class MathHooks {
'postgres' => 'math.pg.sql',
'oracle' => 'math.oracle.sql',
'mssql' => 'math.mssql.sql',
'db2' => 'math.db2.sql',
);
$type = $updater->getDB()->getType();
if ( isset( $map[$type] ) ) {

View File

@ -1,7 +0,0 @@
CREATE TABLE math (
math_inputhash VARCHAR(16) FOR BIT DATA NOT NULL UNIQUE,
math_outputhash VARCHAR(16) FOR BIT DATA NOT NULL,
math_html_conservativeness SMALLINT NOT NULL,
math_html CLOB(64K) INLINE LENGTH 4096,
math_mathml CLOB(64K) INLINE LENGTH 4096
);