Below is the list of changes that have just been committed into a local
5.0 repository of alexi. When alexi does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.1984 05/08/16 23:27:00 aivanov@stripped +1 -0
Merge aivanov@stripped:/home/bk/mysql-5.0
into mysql.com:/home/alexi/mysql-5.0
mysql-test/t/select.test
1.62 05/08/16 23:26:49 aivanov@stripped +0 -0
Auto merged
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: aivanov
# Host: mysql.creware.com
# Root: /home/alexi/mysql-5.0/RESYNC
--- 1.61/mysql-test/t/select.test 2005-08-16 00:03:36 +04:00
+++ 1.62/mysql-test/t/select.test 2005-08-16 23:26:49 +04:00
@@ -2350,3 +2350,14 @@
#
select x'10' + 0, X'10' + 0, b'10' + 0, B'10' + 0;
+
+#
+# BUG #12595
+#
+CREATE TABLE BUG_12595(a varchar(100));
+INSERT INTO BUG_12595 VALUES ('hakan%'), ('hakank'), ("ha%an");
+SELECT * FROM BUG_12595 WHERE a LIKE 'hakan*%' ESCAPE '*';
+-- error 1210
+SELECT * FROM BUG_12595 WHERE a LIKE 'hakan**%' ESCAPE '**';
+SELECT * FROM BUG_12595 WHERE a LIKE 'ha%%an' ESCAPE '%';
+DROP TABLE BUG_12595;
| Thread |
|---|
| • bk commit into 5.0 tree (aivanov:1.1984) | Alex Ivanov | 17 Aug |