Hi,
sorry, I must ask again, because there was no answer to this problem until now.
I've installed mysql 4.1.3 as rpm package.
If SELECT results columns with unicode characters (multibyte characters like german umlauts), the shown frame in my client is defective:
mysql> select * from uml;
+-------+--------+
| ascii | utf8 |
+-------+--------+
| Text | äöü |
| szet | ß |
+-------+--------+
It seems, that counting of necessary blanks to justify the trailing '|' is wrong. The stored values in such columns are correct:
mysql> select ascii,hex(utf8) from uml;
+-------+--------------+
| ascii | hex(utf8) |
+-------+--------------+
| Text | C3A4C3B6C3BC |
| szet | C39F |
+-------+--------------+
Any ideas?
Wolfgang
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]