diff options
author | monty@mysql.com <> | 2004-03-12 01:12:14 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-12 01:12:14 +0200 |
commit | 98fb8ea4c742cb0a7f796ae6ec1d93bb449abdb1 (patch) | |
tree | c0a17d040743869a3c5573eeaabb8a33a3224a2d /mysql-test/r | |
parent | e27960a44e393ac67d037379f340db75a350495e (diff) | |
parent | cba6ff7597ed1cde60e2c77e4814428b73d212bc (diff) | |
download | mariadb-git-98fb8ea4c742cb0a7f796ae6ec1d93bb449abdb1.tar.gz |
Merge with 3.23 to get patch for floor()
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/func_math.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/func_math.result b/mysql-test/r/func_math.result index 46ad7a14e25..1b6a0d43738 100644 --- a/mysql-test/r/func_math.result +++ b/mysql-test/r/func_math.result @@ -59,3 +59,9 @@ ASIN(0.8+0.2) SELECT ASIN(1.2-0.2); ASIN(1.2-0.2) 1.570796 +floor(log(4)/log(2)) +2 +floor(log(8)/log(2)) +3 +floor(log(16)/log(2)) +4 |