# cmd: C:\usr\daemon\mysql\bin\mysql.exe --port=3333 --user=bug_user --tee=log.user.txt

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.41-community MySQL Community Server (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> CALL `bug`.`proc1`;
Query OK, 1 row affected (0.00 sec)

mysql> CALL `bug`.`proc1`;
ERROR 1062 (23000): Duplicate entry '1' for key 'PRIMARY'
mysql> CALL `bug`.`proc1`;
ERROR 1062 (23000): Duplicate entry '1' for key 'PRIMARY'
mysql> CALL `bug`.`proc2`;
ERROR 1062 (23000): Duplicate entry '1' for key 'PRIMARY'
mysql> CALL `bug`.`proc2`;
ERROR 1370 (42000): execute command denied to user 'bug_user'@'127.0.0.1' for routine 'bug.proc2'
mysql> CALL `bug`.`proc2`;
ERROR 1370 (42000): execute command denied to user 'bug_user'@'127.0.0.1' for routine 'bug.proc2'
mysql> EXIT;
