Manuel:table math

This page is a translated version of the page Manual:Math table and the translation is 100% complete.
Manuel:Contenu Schéma de base de données MédiaWiki table math

La table math était utilisée par le module math pour garder une trace des éléments ayant déjà été générés.

Cette table n'est plus utilisée dans la version MediaWiki 1.18 et peut être directement supprimée.

Elle était, et est encore utilisée comme partie de Extension:Math , néanmoins le noyau n'en a plus besoin.

Résumé du schéma

Versions de MediaWiki :
1.10 – 1.17

DESCRIBE math;

+----------------------------+---------------+------+-----+---------+-------+
| Field                      | Type          | Null | Key | Default | Extra |
+----------------------------+---------------+------+-----+---------+-------+
| math_inputhash             | varbinary(16) | NO   | PRI | NULL    |       |
| math_outputhash            | varbinary(16) | NO   |     | NULL    |       |
| math_html_conservativeness | tinyint(4)    | NO   |     | NULL    |       |
| math_html                  | blob          | YES  |     | NULL    |       |
| math_mathml                | blob          | YES  |     | NULL    |       |
+----------------------------+---------------+------+-----+---------+-------+
Version de MediaWiki :
1.9

DESCRIBE math;

+----------------------------+-------------+------+-----+---------+-------+
| Field                      | Type        | Null | Key | Default | Extra |
+----------------------------+-------------+------+-----+---------+-------+
| math_inputhash             | varchar(16) | NO   | PRI |         |       |
| math_outputhash            | varchar(16) | NO   |     |         |       |
| math_html_conservativeness | tinyint(1)  | NO   |     |         |       |
| math_html                  | text        | YES  |     | NULL    |       |
| math_mathml                | text        | YES  |     | NULL    |       |
+----------------------------+-------------+------+-----+---------+-------+

Les index

Versions de MediaWiki :
1.1 – 1.17

SHOW INDEX IN math;

+-------+------------+----------------+--------------+----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| Table | Non_unique | Key_name       | Seq_in_index | Column_name    | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment |
+-------+------------+----------------+--------------+----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| math  |          0 | math_inputhash |            1 | math_inputhash | A         |           0 |     NULL | NULL   |      | BTREE      |         |               |
+-------+------------+----------------+--------------+----------------+-----------+-------------+----------+--------+------+------------+---------+---------------+