Bug #12743 | INFORMATION_SCHEMA.TABLES is missing DEFAULT_CHARACTER_SET_NAME field | ||
---|---|---|---|
Submitted: | 23 Aug 2005 3:42 | Modified: | 13 Sep 2005 8:25 |
Reporter: | Timothy Smith | Email Updates: | |
Status: | Won't fix | Impact on me: | |
Category: | MySQL Server | Severity: | S4 (Feature request) |
Version: | 5.0.12 (recent BK pull) | OS: | Any (any) |
Assigned to: | Jim Winstead | CPU Architecture: | Any |
[23 Aug 2005 3:42]
Timothy Smith
[24 Aug 2005 1:06]
Jim Winstead
Note that you can get this by joining against INFORMATION_SCHEMA.COLLATIONS using the TABLE_COLLATION field in I_S.TABLES. select character_set_name as default_character_set_name, table_collation as default_collation_name from information_schema.tables left join information_schema.collations on table_collation = collation_name where table_schema='information_schema' and table_name='tables';
[24 Aug 2005 1:07]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/internals/28735
[13 Sep 2005 8:25]
Sergei Golubchik
As this is a non-standard field, and it will duplicate existing field (collation. one can turn it into charset with a join, as Jim pointed out), we should not add it.