diff options
author | serg@serg.mysql.com <> | 2002-01-03 19:47:14 +0000 |
---|---|---|
committer | serg@serg.mysql.com <> | 2002-01-03 19:47:14 +0000 |
commit | ef8436beffb8f9aac4fc646627661539dad61911 (patch) | |
tree | e44d2aa432e29fb7c07fd866dcfc56d2b9294101 /mysql-test/r/func_str.result | |
parent | 8b97f200246b649ec89f68a7b919b8134a6825e2 (diff) | |
download | mariadb-git-ef8436beffb8f9aac4fc646627661539dad61911.tar.gz |
BIT_LENGTH ODBC function
Diffstat (limited to 'mysql-test/r/func_str.result')
-rw-r--r-- | mysql-test/r/func_str.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/func_str.result b/mysql-test/r/func_str.result index 5aca1f6b021..a58f3c57169 100644 --- a/mysql-test/r/func_str.result +++ b/mysql-test/r/func_str.result @@ -8,6 +8,9 @@ hellomonty select length('\n\t\r\b\0\_\%\\'); length('\n\t\r\b\0\_\%\\') 10 +select bit_length('\n\t\r\b\0\_\%\\'); +bit_length('\n\t\r\b\0\_\%\\') +80 select concat('monty',' was here ','again'),length('hello'),char(ascii('h')); concat('monty',' was here ','again') length('hello') char(ascii('h')) monty was here again 5 h |