https://bugzilla.wikimedia.org/show_bug.cgi?id=20275





--- Comment #14 from Aryeh Gregor <simetrical+wikib...@gmail.com>  2009-08-28 
21:36:38 UTC ---
A simple test:

mysql> SELECT '\\' LIKE '\\' AS a, '\\' LIKE '\\\\' AS b;
+---+---+
| a | b |
+---+---+
| 1 | 1 | 
+---+---+
1 row in set (0.03 sec)

sqlite> SELECT '\\' LIKE '\\' AS a, '\\' LIKE '\\\\' AS b;
1|0

So the double-escaping is wrong for SQLite.  I don't have any of the other
supported DBMSes handy to test with.


-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to