So we have a lot of routines that come out from exporting. We often need to get these out in CLI, make changes, and bring them back in. Yes, some of these are managed by dif
To answer your exact question: no.
But this will probably give you what you want.
Take a look at SHOW CREATE PROCEDURE
and SHOW CREATE FUNCTION
:
http://dev.mysql.com/doc/refman/5.0/en/show-create-procedure.html
http://dev.mysql.com/doc/refman/5.0/en/show-create-function.html
Those commands allow you to dump the code for one routine at a time.