Closed
Bug 633053
Opened 14 years ago
Closed 6 years ago
DB tables don't agree on collation
Categories
(support.mozilla.org :: Code Quality, task, P3)
support.mozilla.org
Code Quality
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: erik, Unassigned)
Details
The situation now on my laptop:
mysql> use information_schema ;
mysql> SELECT COUNT(*), TABLE_COLLATION FROM tables WHERE TABLE_SCHEMA = 'sumo0720' GROUP BY table_collation;
+----------+-------------------+
| COUNT(*) | TABLE_COLLATION |
+----------+-------------------+
| 1 | latin1_swedish_ci |
| 20 | utf8_general_ci |
| 24 | utf8_unicode_ci |
+----------+-------------------+
3 rows in set (0.07 sec)
This is bad because it makes queries fail which try to compare across columns of differing collation. Apparently, we aren't doing this now, or the situation on stage and prod is better.
Updated•14 years ago
|
Target Milestone: 2011Q1 → 2011Q2
Updated•14 years ago
|
Target Milestone: 2011Q2 → 2011Q3
Updated•13 years ago
|
Target Milestone: 2011Q3 → ---
You need to log in
before you can comment on or make changes to this bug.
Description
•