1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fixed more PB2 test failures introduced by backporting WL#2934.

This commit is contained in:
Alexey Kopytov
2009-12-22 23:55:56 +03:00
parent ff4eeae1bc
commit 0372181e3b
9 changed files with 316 additions and 319 deletions

View File

@@ -22826,7 +22826,7 @@ f1 f2
ABC 3
SELECT * FROM v1 order by 2;
f1 my_sqrt
ABC 1.73205080756888
ABC 1.7320508075688772
ALTER TABLE t1 CHANGE COLUMN f2 f2 VARCHAR(30);
INSERT INTO t1 SET f1 = 'ABC', f2 = 'DEF';
DESCRIBE t1;
@@ -22844,7 +22844,7 @@ ABC DEF
SELECT * FROM v1 order by 2;
f1 my_sqrt
ABC 0
ABC 1.73205080756888
ABC 1.7320508075688772
Warnings:
Warning 1292 Truncated incorrect DOUBLE value: 'DEF'
Warning 1292 Truncated incorrect DOUBLE value: 'DEF'
@@ -22867,7 +22867,7 @@ my_sqrt double YES NULL
SELECT * FROM v2 order by 2;
f1 my_sqrt
ABC 0
ABC 1.73205080756888
ABC 1.7320508075688772
Warnings:
Warning 1292 Truncated incorrect DOUBLE value: 'DEF'
Warning 1292 Truncated incorrect DOUBLE value: 'DEF'
@@ -22878,7 +22878,7 @@ SELECT * FROM t2 order by 2;
f1 ABC
my_sqrt 0
f1 ABC
my_sqrt 1.73205080756888
my_sqrt 1.7320508075688772
DROP TABLE t2;
CREATE TABLE t2 AS SELECT * FROM v1;
Warnings:
@@ -22887,7 +22887,7 @@ SELECT * FROM t2 order by 2;
f1 ABC
my_sqrt 0
f1 ABC
my_sqrt 1.73205080756888
my_sqrt 1.7320508075688772
DROP TABLE t2;
CREATE TABLE t2 AS SELECT * FROM v2;
Warnings:
@@ -22896,7 +22896,7 @@ SELECT * FROM t2 order by 2;
f1 ABC
my_sqrt 0
f1 ABC
my_sqrt 1.73205080756888
my_sqrt 1.7320508075688772
DROP TABLE t1;
DROP TABLE t2;
DROP VIEW v1;