diff --git a/ChangeLog b/ChangeLog index b5e2b7d6d..8387e4d21 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA 3.1.2.0 (not yet released) - bug #1253252 [display] Can't NULL a column with relation defined +- bug #2009500 [SQL] Small improvements in generated SQL (partial fix) 3.1.1.0 (not yet released) - patch #2242765 [core] Navi panel server links wrong, diff --git a/tbl_create.php b/tbl_create.php index a8404fae2..28dc1661b 100644 --- a/tbl_create.php +++ b/tbl_create.php @@ -216,6 +216,7 @@ if (isset($_REQUEST['do_save_data'])) { if (!empty($_REQUEST['partition_definition'])) { $sql_query .= ' ' . PMA_sqlAddslashes($_REQUEST['partition_definition']); } + $sql_query .= ';'; // Executes the query $result = PMA_DBI_try_query($sql_query);