diff options
author | peter@mysql.com <> | 2002-07-17 12:11:48 +0400 |
---|---|---|
committer | peter@mysql.com <> | 2002-07-17 12:11:48 +0400 |
commit | 684bf18e4d35da7ba19e4c714c2fc0a5b62f2489 (patch) | |
tree | 34ee74d8b2d1d25c28e7b9895fdc0a9bbd5d04ad /tests/function.tst | |
parent | 373e19dca1d209476a15d7d61cb350361c9d6efa (diff) | |
download | mariadb-git-684bf18e4d35da7ba19e4c714c2fc0a5b62f2489.tar.gz |
Arjens LOG functions changes with small changes and tests added to mysql-test
Diffstat (limited to 'tests/function.tst')
-rw-r--r-- | tests/function.tst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/function.tst b/tests/function.tst index 5b8746e8d3c..17e1cb6c8ac 100644 --- a/tests/function.tst +++ b/tests/function.tst @@ -7,7 +7,7 @@ # select 1+1,1-1,1+1*2,8/5,8%5,mod(8,5),mod(8,5)|0,-(1+1)*-2,sign(-5) ; select floor(5.5),floor(-5.5),ceiling(5.5),ceiling(-5.5),round(5.5),round(-5.5); -select abs(-10),log(exp(10)),exp(log(sqrt(10))*2),pow(10,log10(10)),rand(999999),rand(); +select abs(-10),log(exp(10)),ln(exp(10)),log2(65535),log(2,65535),exp(log(sqrt(10))*2),pow(10,log10(10)),rand(999999),rand(); select least(6,1.0,2.0),greatest(3,4,5,0) ; select 1 | (1+1),5 & 3,bit_count(7) ; # |