summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_math.test
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2004-03-12 01:12:14 +0200
committerunknown <monty@mysql.com>2004-03-12 01:12:14 +0200
commitdd8b25510e11ca35c37bb9949810ac84c6d7ce29 (patch)
treec0a17d040743869a3c5573eeaabb8a33a3224a2d /mysql-test/t/func_math.test
parenta1d9e1eec4ff8e9e53567bb3606bc4605a952375 (diff)
parentbc9de3d4552f2294bad973d0b9fbe07de3d07c1d (diff)
downloadmariadb-git-dd8b25510e11ca35c37bb9949810ac84c6d7ce29.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/t/func_math.test')
-rw-r--r--mysql-test/t/func_math.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/func_math.test b/mysql-test/t/func_math.test
index 2de692d4389..7057b0ca412 100644
--- a/mysql-test/t/func_math.test
+++ b/mysql-test/t/func_math.test
@@ -28,3 +28,11 @@ SELECT ACOS(0.2*5.0);
SELECT ACOS(0.5*2.0);
SELECT ASIN(0.8+0.2);
SELECT ASIN(1.2-0.2);
+
+#
+# Bug #3051 FLOOR returns invalid
+#
+
+select floor(log(4)/log(2));
+select floor(log(8)/log(2));
+select floor(log(16)/log(2));