summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_math.test
diff options
context:
space:
mode:
authorunknown <gkodinov/kgeorge@magare.gmz>2007-10-01 12:51:59 +0300
committerunknown <gkodinov/kgeorge@magare.gmz>2007-10-01 12:51:59 +0300
commit0ad23eb8a5f377e94d4b4ae83f39555dbe75c3b0 (patch)
tree2369905a97e8a40774beb5da50eea7bf4ee4ccf5 /mysql-test/t/func_math.test
parentfb05833eac1c1adf0d4eedd0a000e4e9759d5c18 (diff)
downloadmariadb-git-0ad23eb8a5f377e94d4b4ae83f39555dbe75c3b0.tar.gz
removed undeterministic test result from the fux for bug 30587
Diffstat (limited to 'mysql-test/t/func_math.test')
-rw-r--r--mysql-test/t/func_math.test2
1 files changed, 0 insertions, 2 deletions
diff --git a/mysql-test/t/func_math.test b/mysql-test/t/func_math.test
index 1f46415741f..9f12fdd696e 100644
--- a/mysql-test/t/func_math.test
+++ b/mysql-test/t/func_math.test
@@ -211,12 +211,10 @@ select pow(cast(-2 as unsigned), 5), pow(18446744073709551614, 5), pow(-2, 5);
CREATE TABLE t1 (a timestamp, b varchar(20), c bit(1));
INSERT INTO t1 VALUES('1998-09-23', 'str1', 1), ('2003-03-25', 'str2', 0);
---enable_metadata
SELECT a DIV 900 y FROM t1 GROUP BY y;
SELECT DISTINCT a DIV 900 y FROM t1;
SELECT b DIV 900 y FROM t1 GROUP BY y;
SELECT c DIV 900 y FROM t1 GROUP BY y;
---disable_metadata
DROP TABLE t1;
CREATE TABLE t1(a LONGBLOB);