Bug #499 Last letter of the string returned by USER() is missing
Submitted: 25 May 2003 8:24 Modified: 25 May 2003 14:18
Reporter: Alexander M. Turek Email Updates:
Status: Not a Bug Impact on me:
None 
Category:MySQL Server Severity:S3 (Non-critical)
Version:4.1.0 OS:Linux (Red Hat 8)
Assigned to: CPU Architecture:Any

[25 May 2003 8:24] Alexander M. Turek
Description:
When I call the function USER(), the last letter of its result string is always cut off.

How to repeat:
# mysql -h localhost -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 6 to server version: 4.1.0-alpha-Max

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> SELECT USER();
+---------------+
| USER()        |
+---------------+
| root@localhos |
+---------------+
1 row in set (0.00 sec)

mysql> \q
Bye
# mysql -h 192.168.0.1 -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 7 to server version: 4.1.0-alpha-Max

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> SELECT USER();
+-----------------+
| USER()          |
+-----------------+
| root@192.168.0. |
+-----------------+
1 row in set (0.00 sec)

mysql> \q
Bye
[25 May 2003 14:16] Alexander Keremidarski
Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. Because of this, we hope you add your comments
to the original bug instead.

Thank you for your interest in MySQL.
[25 May 2003 14:18] Alexander Keremidarski
Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. Because of this, we hope you add your comments
to the original bug instead.

Thank you for your interest in MySQL.

Reported as Bug #440