bug #2986383 Not all data being shown / counted

This commit is contained in:
Marc Delisle
2010-05-30 08:43:41 -04:00
parent 7e5584ed2e
commit cfcec687fa
2 changed files with 5 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
+ [lang] Greek update, thanks to Panagiotis Papazoglou - panos78 + [lang] Greek update, thanks to Panagiotis Papazoglou - panos78
+ [lang] Updated lot of translation based on work done in master branch. + [lang] Updated lot of translation based on work done in master branch.
- bug #3008411 [databases] Last dropped database remains active in navi - bug #3008411 [databases] Last dropped database remains active in navi
- bug #2986383 [parser] Not all data being shown / counted
3.3.3.0 (2010-05-10) 3.3.3.0 (2010-05-10)
- patch #2982480 [navi] Do not group if there would be one table in group, - patch #2982480 [navi] Do not group if there would be one table in group,

View File

@@ -2217,6 +2217,10 @@ if (! defined('PMA_MINIMUM_COMMON')) {
$after = ''; $after = '';
$before = ''; $before = '';
} }
// for example SELECT 1 somealias
if ($typearr[1] == 'digit_integer') {
$before = ' ';
}
if (($typearr[3] == 'alpha_columnType') || ($typearr[3] == 'alpha_identifier')) { if (($typearr[3] == 'alpha_columnType') || ($typearr[3] == 'alpha_identifier')) {
$after .= ' '; $after .= ' ';
} }