Show SQL query after modifying/creating index

This commit is contained in:
Michal Čihař
2003-02-28 14:51:08 +00:00
parent 389190d0c3
commit 149cf12d92
2 changed files with 6 additions and 0 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-02-28 Michal Cihar <nijel@users.sourceforge.net>
* tbl_indexes.php3: Show SQL query after modifying/creating index (closes
#694800)
2003-02-28 Alexander M. Turek <rabus@users.sourceforge.net>
* Documentation.html: Fixed a typo.

View File

@@ -225,6 +225,8 @@ if (!defined('PMA_IDX_INCLUDED')
$result = PMA_mysql_query($local_query) or PMA_mysqlDie('', $local_query, FALSE, $err_url);
$message = $strTable . ' ' . htmlspecialchars($table) . ' ' . $strHasBeenAltered;
// To show the query:
$sql_query = $local_query;
include('./tbl_properties.php3');
exit();