Edgewall Software

Changes between Version 1 and Version 2 of Ticket #12363


Ignore:
Timestamp:
Feb 22, 2016, 6:20:49 PM (8 years ago)
Author:
Jun Omae
Comment:

Proposed changes in log:jomae.git@t12363.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12363

    • Property Milestone next-stable-1.0.x1.0.11
    • Property Summary Support utf16/utf32 charset and utf16_bin/utf32_bin collation in MySQLSupport ucs2/utf16/utf32 charset and utf16_bin/utf32_bin collation in MySQL
  • Ticket #12363 – Description

    v1 v2  
    1 In Trac 1.0.10 with MySQL utf16/utf32, initenv command crashes:
     1In Trac 1.0.10 with MySQL ucs2/utf16/utf32, initenv command crashes:
    22
    33{{{
     
    3131
    3232{{{
    33 mysql> SHOW CHARACTER SET LIKE 'utf%';
     33mysql> SHOW CHARACTER SET WHERE Charset = 'ucs2' OR Charset LIKE 'utf%';
    3434+---------+----------------+--------------------+--------+
    3535| Charset | Description    | Default collation  | Maxlen |
    3636+---------+----------------+--------------------+--------+
    3737| utf8    | UTF-8 Unicode  | utf8_general_ci    |      3 |
     38| ucs2    | UCS-2 Unicode  | ucs2_general_ci    |      2 |
    3839| utf8mb4 | UTF-8 Unicode  | utf8mb4_general_ci |      4 |
    3940| utf16   | UTF-16 Unicode | utf16_general_ci   |      4 |
    4041| utf32   | UTF-32 Unicode | utf32_general_ci   |      4 |
    4142+---------+----------------+--------------------+--------+
    42 4 rows in set (0.00 sec)
     435 rows in set (0.01 sec)
    4344}}}