diff options
author | unknown <msvensson@neptunus.(none)> | 2006-10-06 00:57:10 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-10-06 00:57:10 +0200 |
commit | 78c5bc62c59b5b168fb0625a70cc465ead4e59ae (patch) | |
tree | 5a4b892c8bc10f8ae0b5f5fe9f4b10fc4e8635f4 /mysql-test/include | |
parent | cae534e36f38dde5c34b320057a1df714d69cc5c (diff) | |
download | mariadb-git-78c5bc62c59b5b168fb0625a70cc465ead4e59ae.tar.gz |
Add printout of file in which warning was detected
Cleanup .progress, .reject, .log and .warnings files produced by mysqltest
client/mysqltest.c:
Add printout of file in which warning was detected
mysql-test/include/ctype_like_escape.inc:
Remove warnings, convert -- comments to # comments
mysql-test/mysql-test-run.pl:
Cleanup all files produced by mysqltest before starting mysqltest again
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/ctype_like_escape.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/include/ctype_like_escape.inc b/mysql-test/include/ctype_like_escape.inc index ac97fbaa1a0..d4abc33c178 100644 --- a/mysql-test/include/ctype_like_escape.inc +++ b/mysql-test/include/ctype_like_escape.inc @@ -11,8 +11,8 @@ insert into t1 values('ab_def'); insert into t1 values('abc_ef'); insert into t1 values('abcd_f'); insert into t1 values('abcde_'); --- should return ab_def +# should return ab_def select c1 as c1u from t1 where c1 like 'ab\_def'; --- should return ab_def +# should return ab_def select c1 as c2h from t1 where c1 like 'ab#_def' escape '#'; drop table t1; |