- 论坛徽章:
- 0
|
Incompatible change: MySQL interprets length specifications in character column definitions in characters. (Earlier
versions interpret them in bytes.) For example, CHAR(N) means N characters, not N bytes.
For single-byte character sets, this change makes no difference. However, if you upgrade to MySQL 4.1 and configure
the server to use a multi-byte character set, the apparent length of character columns changes. Suppose that a 4.0
table contains a CHAR(8) column used to store ujis characters. Eight bytes can store from two to four ujis characters.
If you upgrade to 4.1 and configure the server to use ujis as its default character set, the server interprets
character column lengths based on the maximum size of a ujis character, which is three bytes. The number of three-byte
characters that fit in eight bytes is two. Consequently, if you use SHOW CREATE TABLE to view the table definition,
MySQL displays CHAR(2). You can retrieve existing data from the table, but you can only store new values containing up
to two characters. To correct this issue, use ALTER TABLE to change the column definition. For example:
ALTER TABLE tbl_name MODIFY col_name CHAR(8); |
|