Merge branch 'QA_3_3'

This commit is contained in:
Marc Delisle
2010-05-30 08:44:33 -04:00
2 changed files with 5 additions and 0 deletions

View File

@@ -90,6 +90,7 @@ $Id$
+ [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

@@ -2220,6 +2220,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 .= ' ';
} }