Changes between Initial Version and Version 1 of Ticket #18210, comment 3
- Timestamp:
- 07/22/2011 09:26:26 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18210, comment 3
initial v1 1 1 Yes, it is due to the collation used by default in WP (utf8_general_ci), which is case insensitive. There are more cases than case insensivity, for example the following query returns true: 2 2 {{{ 3 select ('_allday' COLLATE utf8_general_ci) = ('_ âlldây ' COLLATE utf8_general_ci)3 select ('_allday' COLLATE utf8_general_ci) = ('_Älldây ' COLLATE utf8_general_ci) 4 4 }}} 5 5