diff options
author | unknown <serg@serg.mysql.com> | 2002-01-03 19:47:14 +0000 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2002-01-03 19:47:14 +0000 |
commit | c7f9472be8eafbc046156accb43593a2fc60ad04 (patch) | |
tree | e44d2aa432e29fb7c07fd866dcfc56d2b9294101 /mysql-test/t | |
parent | 0abc68fbeb74832503634a208b21c756b510c392 (diff) | |
download | mariadb-git-c7f9472be8eafbc046156accb43593a2fc60ad04.tar.gz |
BIT_LENGTH ODBC function
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/func_str.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/func_str.test b/mysql-test/t/func_str.test index fd6ff0d70e7..26272fba03f 100644 --- a/mysql-test/t/func_str.test +++ b/mysql-test/t/func_str.test @@ -9,6 +9,7 @@ drop table if exists t1; select 'hello',"'hello'",'""hello""','''h''e''l''l''o''',"hel""lo",'hel\'lo'; select 'hello' 'monty'; select length('\n\t\r\b\0\_\%\\'); +select bit_length('\n\t\r\b\0\_\%\\'); select concat('monty',' was here ','again'),length('hello'),char(ascii('h')); select locate('he','hello'),locate('he','hello',2),locate('lo','hello',2) ; select instr('hello','HE'), instr('hello',binary 'HE'), instr(binary 'hello','HE'); |