diff options
author | unknown <monty@mysql.com> | 2004-03-12 01:12:14 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-03-12 01:12:14 +0200 |
commit | 1d4638e4ccea3f49432e7358d1919b6ff4570ffe (patch) | |
tree | c0a17d040743869a3c5573eeaabb8a33a3224a2d /mysql-test/r/func_math.result | |
parent | 7b18a6d1e8d51a403133ee88d6b1696bfa3a8ace (diff) | |
parent | a1daf829fb80dcded5ed3b7eb63752a704d0b634 (diff) | |
download | mariadb-git-1d4638e4ccea3f49432e7358d1919b6ff4570ffe.tar.gz |
Merge with 3.23 to get patch for floor()
BitKeeper/etc/logging_ok:
auto-union
myisam/mi_check.c:
Auto merged
mysql-test/r/func_math.result:
Auto merged
mysql-test/t/func_math.test:
Auto merged
sql/item_func.cc:
Auto merged
Diffstat (limited to 'mysql-test/r/func_math.result')
-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 |