diff --git a/ChangeLog b/ChangeLog index 3d7c7bc6b..07f863bd4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -30,8 +30,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA + [upload] make use of $cfg['TempDir'] for file uploads + [server] improved display of binary logs + [data] better error handling in tbl_create.php -+ [routines] from Patch #1649881, thanks to Mike Beck; work in progress... - (still to do: support definer; procedure execution) ++ [routines] from Patch #1649881, thanks to Mike Beck 2.10.1.0 (not released yet) ===================== diff --git a/libraries/db_routines.inc.php b/libraries/db_routines.inc.php index 17d163ad7..9ca1498f8 100644 --- a/libraries/db_routines.inc.php +++ b/libraries/db_routines.inc.php @@ -5,9 +5,18 @@ * @version $Id$ */ + /** - * Check parameters - * + * @todo Support seeing the "results" of the called procedure or + * function. This needs further reseach because a procedure + * does not necessarily contain a SELECT statement that + * produces something to see. But it seems we could at least + * get the number of rows affected. We would have to + * use the CLIENT_MULTI_RESULTS flag to get the result set + * and also the call status. All this does not fit well with + * our current sql.php. + * Of course the interface would need a way to pass calling parameters. + * Also, support DEFINER (like we do in export). */ if ( PMA_MYSQL_INT_VERSION >= 50002 ) { $url_query .= '&goto=db_structure.php'; @@ -20,7 +29,6 @@ if ( PMA_MYSQL_INT_VERSION >= 50002 ) {