Closed
Bug 856673
Opened 13 years ago
Closed 11 years ago
Convert builder-addons dbs to all use innodb, except where appropriate
Categories
(Data & BI Services Team :: DB: MySQL, task)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: scabral, Unassigned)
References
Details
convert dbs to all use innodb, except where appropriate, such as where there are fulltext searches.
| Reporter | ||
Comment 1•13 years ago
|
||
6 tables are MyISAM, none are fulltext:
mysql> select distinct table_schema,table_name from information_schema.statistics where index_type='fulltext'; Empty set (0.02 sec)
mysql> select table_schema,count(*) from information_schema.tables where engine='myisam' and table_schema not in ('mysql','performance_schema','information_schema') group by table_schema with rollup;
+----------------------------+----------+
| table_schema | count(*) |
+----------------------------+----------+
| builder_addons_mozilla_org | 6 |
| NULL | 6 |
+----------------------------+----------+
2 rows in set (0.00 sec)
| Reporter | ||
Comment 2•13 years ago
|
||
mysql> select table_name from information_schema.tables where table_schema='builder_addons_mozilla_org' and engine='myisam';
+--------------------+
| table_name |
+--------------------+
| schema_version |
| waffle_flag |
| waffle_flag_groups |
| waffle_flag_users |
| waffle_sample |
| waffle_switch |
+--------------------+
6 rows in set (0.00 sec)
These might be django tables.....
Updated•11 years ago
|
Product: mozilla.org → Data & BI Services Team
| Reporter | ||
Comment 3•11 years ago
|
||
This db has since been decommissioned.
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•