Added back the SP calls from the test case for bug 48073.

After the fix of LP bug 784723 the test case returns the
right results.
This commit is contained in:
Igor Babaev 2011-05-20 12:59:52 -07:00
parent 89cf840cd9
commit ac321a3440
3 changed files with 18 additions and 4 deletions

View File

@ -574,6 +574,14 @@ WHERE v1field IN ( SELECT v2field as vf_inner FROM v2 );
END|
INSERT INTO t1 VALUES (1),(2),(3);
INSERT INTO t2 VALUES (2),(3),(4);
CALL p1;
v1field
2
3
CALL p1;
v1field
2
3
DROP TABLE t1,t2;
DROP VIEW v1,v2;
DROP PROCEDURE p1;

View File

@ -582,6 +582,14 @@ WHERE v1field IN ( SELECT v2field as vf_inner FROM v2 );
END|
INSERT INTO t1 VALUES (1),(2),(3);
INSERT INTO t2 VALUES (2),(3),(4);
CALL p1;
v1field
2
3
CALL p1;
v1field
2
3
DROP TABLE t1,t2;
DROP VIEW v1,v2;
DROP PROCEDURE p1;

View File

@ -522,10 +522,8 @@ DELIMITER ;|
INSERT INTO t1 VALUES (1),(2),(3);
INSERT INTO t2 VALUES (2),(3),(4);
# These SP calls return a wrong result set due to a bug in the code of mwl106
# Uncomment them when the bug is fixed
# CALL p1;
# CALL p1;
CALL p1;
CALL p1;
DROP TABLE t1,t2;
DROP VIEW v1,v2;