Changes between Initial Version and Version 1 of Ticket #10041, comment 11
- Timestamp:
- 02/05/2013 05:29:55 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10041, comment 11
initial v1 1 1 I posted these two examples at the mysql.com string comparison page. There's no need to support both of them, but it is an interesting exercise. 2 2 3 SELECT 'hello\\\\\'world' LIKE 'hello\\\\\\\\\\\'world' 3 {{{SELECT 'hello\\\\\'world' LIKE 'hello\\\\\\\\\\\'world'}}} 4 4 5 5 or 6 6 7 SELECT 'hello\\\\\'world' LIKE 'hello|\\|\\|\'world' ESCAPE '|' 7 {{{SELECT 'hello\\\\\'world' LIKE 'hello|\\|\\|\'world' ESCAPE '|'}}}