[interface] Default to not count tables in database.

This gives big performance penalty in case there is many databases and
the number of tables is not that much useful to justify it.
This commit is contained in:
Michal Čihař
2011-01-28 14:29:44 +01:00
parent 5ceb7bc817
commit 67a8a06c1a
2 changed files with 5 additions and 4 deletions

View File

@@ -132,6 +132,7 @@
- rfe #3158867 [privileges] No DROP DATABASE warning if you delete a user - rfe #3158867 [privileges] No DROP DATABASE warning if you delete a user
- [interface] Add link to documentation for status variables. - [interface] Add link to documentation for status variables.
- [security] Redirect external links to avoid Referer leakage. - [security] Redirect external links to avoid Referer leakage.
- [interface] Default to not count tables in database.
3.3.10.0 (not yet released) 3.3.10.0 (not yet released)
- patch #3147400 [structure] Aria table size printed as unknown, - patch #3147400 [structure] Aria table size printed as unknown,

View File

@@ -425,7 +425,7 @@ $cfg['Servers'][$i]['ShowDatabasesCommand'] = 'SHOW DATABASES';
* *
* @global array $cfg['Servers'][$i]['CountTables'] * @global array $cfg['Servers'][$i]['CountTables']
*/ */
$cfg['Servers'][$i]['CountTables'] = true; $cfg['Servers'][$i]['CountTables'] = false;
/** /**
* Whether the tracking mechanism creates versions for tables and views automatically. * Whether the tracking mechanism creates versions for tables and views automatically.
@@ -488,7 +488,7 @@ $cfg['ServerDefault'] = 1;
* Other core phpMyAdmin settings * Other core phpMyAdmin settings
*/ */
/** /**
* whether Ajax behavior is active * whether Ajax behavior is active
* *
* @global boolean $cfg['AjaxEnable'] * @global boolean $cfg['AjaxEnable']
*/ */
@@ -1179,7 +1179,7 @@ $cfg['Export']['file_template_server'] = '@SERVER@';
$cfg['Export']['codegen_structure_or_data'] = 'data'; $cfg['Export']['codegen_structure_or_data'] = 'data';
/** /**
* *
* *
* @global $cfg['Export']['codegen_format'] * @global $cfg['Export']['codegen_format']
*/ */
@@ -2179,7 +2179,7 @@ $cfg['TextareaCols'] = 40;
$cfg['TextareaRows'] = 15; $cfg['TextareaRows'] = 15;
/** /**
* double size of textarea size for LONGTEXT columns * double size of textarea size for LONGTEXT columns
* *
* @global boolean $cfg['LongtextDoubleTextarea'] * @global boolean $cfg['LongtextDoubleTextarea']
*/ */