Commit fda36556 authored by Igor Babaev's avatar Igor Babaev

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.
parent a2a378df
...@@ -574,6 +574,14 @@ WHERE v1field IN ( SELECT v2field as vf_inner FROM v2 ); ...@@ -574,6 +574,14 @@ WHERE v1field IN ( SELECT v2field as vf_inner FROM v2 );
END| END|
INSERT INTO t1 VALUES (1),(2),(3); INSERT INTO t1 VALUES (1),(2),(3);
INSERT INTO t2 VALUES (2),(3),(4); INSERT INTO t2 VALUES (2),(3),(4);
CALL p1;
v1field
2
3
CALL p1;
v1field
2
3
DROP TABLE t1,t2; DROP TABLE t1,t2;
DROP VIEW v1,v2; DROP VIEW v1,v2;
DROP PROCEDURE p1; DROP PROCEDURE p1;
......
...@@ -582,6 +582,14 @@ WHERE v1field IN ( SELECT v2field as vf_inner FROM v2 ); ...@@ -582,6 +582,14 @@ WHERE v1field IN ( SELECT v2field as vf_inner FROM v2 );
END| END|
INSERT INTO t1 VALUES (1),(2),(3); INSERT INTO t1 VALUES (1),(2),(3);
INSERT INTO t2 VALUES (2),(3),(4); INSERT INTO t2 VALUES (2),(3),(4);
CALL p1;
v1field
2
3
CALL p1;
v1field
2
3
DROP TABLE t1,t2; DROP TABLE t1,t2;
DROP VIEW v1,v2; DROP VIEW v1,v2;
DROP PROCEDURE p1; DROP PROCEDURE p1;
......
...@@ -522,10 +522,8 @@ DELIMITER ;| ...@@ -522,10 +522,8 @@ DELIMITER ;|
INSERT INTO t1 VALUES (1),(2),(3); INSERT INTO t1 VALUES (1),(2),(3);
INSERT INTO t2 VALUES (2),(3),(4); INSERT INTO t2 VALUES (2),(3),(4);
# These SP calls return a wrong result set due to a bug in the code of mwl106 CALL p1;
# Uncomment them when the bug is fixed CALL p1;
# CALL p1;
# CALL p1;
DROP TABLE t1,t2; DROP TABLE t1,t2;
DROP VIEW v1,v2; DROP VIEW v1,v2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment