MySQL 5.5: enum as argument of a stored procedure.
Database management in a single PHP file
Brought to you by:
jakubvrana
MySQL 5.5.31-0+wheezy1: stored procedure containing argument of "enum" type confuses the Adminer. It will not able to call or modify such a procedure
CREATE DEFINER=root@localhost PROCEDURE testProc(IN param1 enum('aaa','bbb')) BEGIN SELECT param1; END
Fixed.