bug 667663

This commit is contained in:
Marc Delisle
2003-01-15 18:41:35 +00:00
parent 42a53db987
commit 214a813d9d
2 changed files with 6 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ $Source$
2003-01-15 Marc Delisle <lem9@users.sourceforge.net>
* pdf_pages.php3: feature: deleting a pdf page
* libraries/sqlparser.lib.php3: bug 667317 (INTERVAL 10YEAR)
, bug 667663 (ALTER TABLE tbl_name AUTO_INCREMENT = 1 )
2003-01-14 Alexander M. Turek <rabus@users.sourceforge.net>
* server_privileges.php3:

View File

@@ -1341,6 +1341,11 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
}
break;
case 'alpha_columnAttrib':
// ALTER TABLE tbl_name AUTO_INCREMENT = 1
if ($typearr[1] == 'alpha_identifier') {
$before .= ' ';
}
if (($typearr[3] == 'alpha_columnAttrib') || ($typearr[3] == 'quote_single')) {
$after .= ' ';
}