diff options
author | bell@sanja.is.com.ua <> | 2003-10-30 12:57:26 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2003-10-30 12:57:26 +0200 |
commit | 33346e26af354ba09d6a885d6eb0f1eccec4f72a (patch) | |
tree | feb3d108a684e5356467c6eca482627ae8d30859 /mysql-test/r/func_regexp.result | |
parent | ae380c58552728451cc04113b4b7b57bb5f919f7 (diff) | |
download | mariadb-git-33346e26af354ba09d6a885d6eb0f1eccec4f72a.tar.gz |
added code covarage for functions convert(), nullif(), crc32(), is_used_lock(), char_lengtrh(), bit_xor()
added string length for more speed
made code covarage for print() method of Item
fixed printability of some items (SCRUM) (WL#1274)
Diffstat (limited to 'mysql-test/r/func_regexp.result')
-rw-r--r-- | mysql-test/r/func_regexp.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/func_regexp.result b/mysql-test/r/func_regexp.result index 35742136ee6..323642cab8c 100644 --- a/mysql-test/r/func_regexp.result +++ b/mysql-test/r/func_regexp.result @@ -36,6 +36,11 @@ insert into t1 (xxx) values('this is a test of some long text to see what happen select * from t1 where xxx regexp('is a test of some long text to'); xxx this is a test of some long text to see what happens +explain extended select * from t1 where xxx regexp('is a test of some long text to'); +id select_type table type possible_keys key key_len ref rows Extra +1 SIMPLE t1 system NULL NULL NULL NULL 1 +Warnings: +Note 1003 select high_priority test.t1.xxx AS `xxx` from test.t1 where (test.t1.xxx regexp _latin1'is a test of some long text to') select * from t1 where xxx regexp('is a test of some long text to '); xxx this is a test of some long text to see what happens |