bug 756861

This commit is contained in:
Marc Delisle
2003-06-19 17:58:20 +00:00
parent 75988f6b33
commit f458691636
2 changed files with 2 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ $Source$
2003-06-19 Marc Delisle <lem9@users.sourceforge.net> 2003-06-19 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sqlparser.lib.php3: analyzer for FOREIGN KEYS * libraries/sqlparser.lib.php3: analyzer for FOREIGN KEYS
* libraries/sqlparser.lib.php3: bug 756861, DEFAULT 0 becomes DEFAULT0
2003-06-17 Michal Cihar <nijel@users.sourceforge.net> 2003-06-17 Michal Cihar <nijel@users.sourceforge.net>
* config.inc.php3: Fixed typo (s/'PMA_pdf_page'/'PMA_pdf_pages'/). * config.inc.php3: Fixed typo (s/'PMA_pdf_page'/'PMA_pdf_pages'/).

View File

@@ -1662,7 +1662,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
if ($typearr[1] == 'alpha_identifier') { if ($typearr[1] == 'alpha_identifier') {
$before .= ' '; $before .= ' ';
} }
if (($typearr[3] == 'alpha_columnAttrib') || ($typearr[3] == 'quote_single')) { if (($typearr[3] == 'alpha_columnAttrib') || ($typearr[3] == 'quote_single') || ($typearr[3] == 'digit_integer')) {
$after .= ' '; $after .= ' ';
} }
break; break;