Fix for MySQL Bug #22413 should be backported to LTS releases
Bug #161127 reported by
Daniël van Eeden
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
mysql-dfsg-5.0 (Ubuntu) |
Fix Released
|
Undecided
|
Unassigned | ||
Dapper |
Fix Released
|
Medium
|
Jamie Strandboge |
Bug Description
MySQL bug #22413[1] is fixed in mysql-dfsg-5.0 (5.0.32-1) and should be backported to the version in Ubuntu 6.06 LTS.
CVE References
Changed in mysql-dfsg-5.0: | |
assignee: | nobody → jamie-strandboge |
status: | New → Triaged |
Changed in mysql-dfsg-5.0: | |
assignee: | jamie-strandboge → ubuntu-security |
Changed in mysql-dfsg-5.0: | |
assignee: | ubuntu-security → jamie-strandboge |
importance: | Undecided → Medium |
status: | Triaged → In Progress |
To post a comment you must log in.
mysql> show create view v_info_ top50_tablecoun t\G ******* ******* ****** 1. row ******* ******* ******* ****** top50_tablecoun t `deeden` @`localhost` SQL SECURITY DEFINER VIEW `deeden` .`v_info_ top50_tablecoun t` AS select sql_no_cache `v_info_ tablecount` .`schema_ name` AS `schema_ name`,` v_info_ tablecount` .`table_ count` AS `table_count` from `deeden` .`v_info_ tablecount` order by `v_info_ tablecount` .`table_ count` desc limit 50
*******
View: v_info_
Create View: CREATE ALGORITHM=UNDEFINED DEFINER=
1 row in set (0.00 sec)
mysql> show create view v_info_tablecount\G ******* ******* ****** 1. row ******* ******* ******* ****** `deeden` @`localhost` SQL SECURITY DEFINER VIEW `deeden` .`v_info_ tablecount` AS select sql_no_cache `s`.`SCHEMA_NAME` AS `schema_ name`,count( `t`.`TABLE_ NAME`) AS `table_count` from (`information_ schema` .`schemata` `s` left join `information_ schema` .`tables` `t` on((`s` .`SCHEMA_ NAME` = `t`.`TABLE_ SCHEMA` ))) group by `s`.`SCHEMA_NAME`
*******
View: v_info_tablecount
Create View: CREATE ALGORITHM=UNDEFINED DEFINER=
1 row in set (0.00 sec)
mysql> select count(*) from information_ schema. tables;
+----------+
| count(*) |
+----------+
| 8519 |
+----------+
1 row in set (3.36 sec)
mysql> select count(*) from information_ schema. schemata;
+----------+
| count(*) |
+----------+
| 247 |
+----------+
1 row in set (0.01 sec)
mysql> explain select * from v_info_ top50_tablecoun t;
ERROR 2013 (HY000): Lost connection to MySQL server during query