Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.1.20, 10.2(EOL)
-
None
-
10.2.4-5
Description
I run this script:
DROP PROCEDURE IF EXISTS sp1;
|
CREATE PROCEDURE sp1()
|
GRANT ALL PRIVILEGES ON *.* TO 'foo'@'%' IDENTIFIED BY 'pass';
|
CALL sp1();
|
It seems to work fine.
However, if I call sp1() for the second time, it returns a strange warning:
CALL sp1();
|
SHOW WARNINGS;
|
+---------+------+--------------------------------------------------------------------------------------+
|
| Level | Code | Message |
|
+---------+------+--------------------------------------------------------------------------------------+
|
| Warning | 1366 | Incorrect string value: '\xA5\xA5\xA5\xA5\xA5\xA5...' for column 'Password' at row 1 |
|
+---------+------+--------------------------------------------------------------------------------------+
|