diff options
Diffstat (limited to 'mysql-test/r/func_like.result')
-rw-r--r-- | mysql-test/r/func_like.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/func_like.result b/mysql-test/r/func_like.result index 796674b5fa4..c2085ba12da 100644 --- a/mysql-test/r/func_like.result +++ b/mysql-test/r/func_like.result @@ -15,4 +15,15 @@ test select * from t1 where a like "te_t"; a test +select * from t1 where a like "%a%"; +a +a +abc +abcd +select * from t1 where a like "%abcd%"; +a +abcd +select * from t1 where a like "%abc\d%"; +a +abcd drop table t1; |