Changes between Initial Version and Version 1 of Ticket #10041, comment 12
- Timestamp:
- 02/05/2013 05:30:17 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10041, comment 12
initial v1 1 1 I guess we need to ask ourselves, what's the difference between these two queries? 2 2 3 {{{ 3 4 SELECT 'hello\'world' LIKE 'hello\'world'; 4 5 5 6 SELECT 'hello\'world' LIKE 'hello\\\'world'; 7 }}} 6 8 7 9 If you say there's no difference, then we can safely ignore quotes in like_escape(). If you are confused and think this makes no sense, then the extra slashes help explain what's going on.