diff options
author | unknown <ramil@mysql.com> | 2005-04-27 19:06:47 +0500 |
---|---|---|
committer | unknown <ramil@mysql.com> | 2005-04-27 19:06:47 +0500 |
commit | 00205076d72048237fd78591c98757a17e323fa6 (patch) | |
tree | e504fac2e81ecd414c9a5c3858e304e716798c56 /mysql-test/r/func_math.result | |
parent | 4c5552c3ce2a0ff39583c78027cfecd4e9804d3b (diff) | |
download | mariadb-git-00205076d72048237fd78591c98757a17e323fa6.tar.gz |
after-merge fix
mysql-test/r/func_math.result:
after merge fix:
the test should be added after we have new hf's pm code pushed.
mysql-test/t/func_math.test:
after merge fix:
the test should be added after we have new hf's pm code pushed.
Diffstat (limited to 'mysql-test/r/func_math.result')
-rw-r--r-- | mysql-test/r/func_math.result | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/mysql-test/r/func_math.result b/mysql-test/r/func_math.result index 9cb1e4a56d6..005f41f7063 100644 --- a/mysql-test/r/func_math.result +++ b/mysql-test/r/func_math.result @@ -127,13 +127,3 @@ Warnings: Note 1003 select degrees(pi()) AS `degrees(pi())`,radians(360) AS `radians(360)` select rand(rand); ERROR 42S22: Unknown column 'rand' in 'field list' -create table t1 select round(1, 6); -show create table t1; -Table Create Table -t1 CREATE TABLE `t1` ( - `round(1, 6)` double(7,6) NOT NULL default '0.000000' -) ENGINE=MyISAM DEFAULT CHARSET=latin1 -select * from t1; -round(1, 6) -1.000000 -drop table t1; |