bug #2959746 Unknown table status: TABLE_TYPE
This commit is contained in:
@@ -8,6 +8,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
||||
3.3.1.0 (not yet released)
|
||||
- bug #2941037 [core] Database structure not sorted by table correctly
|
||||
- bug #2948492 [interface] Slide effect masks some fields on search page
|
||||
- bug #2959746 [interface] Unknown table status: TABLE_TYPE
|
||||
|
||||
3.3.0.0 (not yet released)
|
||||
+ rfe #2308632 [edit] Use hex for (var)binary fields,
|
||||
|
@@ -423,7 +423,8 @@ class PMA_Table
|
||||
|
||||
if (! $force_exact) {
|
||||
if (! isset(PMA_Table::$cache[$db][$table]['Rows']) && ! $is_view) {
|
||||
PMA_Table::$cache[$db][$table] = PMA_DBI_fetch_single_row('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ' LIKE \'' . PMA_sqlAddslashes($table, true) . '\'');
|
||||
$tmp_tables = PMA_DBI_get_tables_full($db, $table);
|
||||
PMA_Table::$cache[$db][$table] = $tmp_tables[$table];
|
||||
}
|
||||
$row_count = PMA_Table::$cache[$db][$table]['Rows'];
|
||||
}
|
||||
|
@@ -290,6 +290,7 @@ function PMA_DBI_get_tables_full($database, $table = false, $tbl_is_group = fals
|
||||
SELECT *,
|
||||
`TABLE_SCHEMA` AS `Db`,
|
||||
`TABLE_NAME` AS `Name`,
|
||||
`TABLE_TYPE` ÀS `TABLE_TYPE`,
|
||||
`ENGINE` AS `Engine`,
|
||||
`ENGINE` AS `Type`,
|
||||
`VERSION` AS `Version`,
|
||||
|
Reference in New Issue
Block a user