summaryrefslogtreecommitdiff
path: root/mysql-test/suite/funcs_1/r/innodb_views.result
diff options
context:
space:
mode:
authorPatrick Crews <patrick.crews@sun.com>2009-03-09 11:32:07 -0400
committerPatrick Crews <patrick.crews@sun.com>2009-03-09 11:32:07 -0400
commit636d8c50621366facfbd9417a5f25ebcc5c76b91 (patch)
tree0f185a47e2a97b5d8e7e117530f10a9445bba4e5 /mysql-test/suite/funcs_1/r/innodb_views.result
parent7541fec52d0926888b7d41b86b72319db2755031 (diff)
downloadmariadb-git-636d8c50621366facfbd9417a5f25ebcc5c76b91.tar.gz
Fix of failing funcs_1 tests.
Changes are due to changes in precision. Re-record of .result files to account for new server precision.
Diffstat (limited to 'mysql-test/suite/funcs_1/r/innodb_views.result')
-rw-r--r--mysql-test/suite/funcs_1/r/innodb_views.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/suite/funcs_1/r/innodb_views.result b/mysql-test/suite/funcs_1/r/innodb_views.result
index 3d5c5a1e698..30c7261d09e 100644
--- a/mysql-test/suite/funcs_1/r/innodb_views.result
+++ b/mysql-test/suite/funcs_1/r/innodb_views.result
@@ -22824,7 +22824,7 @@ f1 f2
ABC 3
SELECT * FROM v1 order by 2;
f1 my_sqrt
-ABC 1.7320508075689
+ABC 1.73205080756888
ALTER TABLE t1 CHANGE COLUMN f2 f2 VARCHAR(30);
INSERT INTO t1 SET f1 = 'ABC', f2 = 'DEF';
DESCRIBE t1;
@@ -22842,7 +22842,7 @@ ABC DEF
SELECT * FROM v1 order by 2;
f1 my_sqrt
ABC 0
-ABC 1.7320508075689
+ABC 1.73205080756888
SELECT SQRT('DEF');
SQRT('DEF')
0
@@ -22862,7 +22862,7 @@ my_sqrt double YES NULL
SELECT * FROM v2 order by 2;
f1 my_sqrt
ABC 0
-ABC 1.7320508075689
+ABC 1.73205080756888
CREATE TABLE t2 AS SELECT f1, SQRT(f2) my_sqrt FROM t1;
SELECT * FROM t2 order by 2;
f1 ABC