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:
parent
89cf840cd9
commit
ac321a3440
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user