Fixed remaining test failure
This commit is contained in:
parent
6affa021b6
commit
449d359fa0
@ -3635,13 +3635,9 @@ SELECT count(*) into cnt from t2;
|
|||||||
set @count = cnt;
|
set @count = cnt;
|
||||||
SELECT @count;
|
SELECT @count;
|
||||||
END//
|
END//
|
||||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ';
|
ERROR 42S22: Unknown column 'cnt' in 'field list'
|
||||||
set @count = cnt;
|
|
||||||
SELECT @count;
|
|
||||||
END' at line 2
|
|
||||||
CALL sp1( 10 );
|
CALL sp1( 10 );
|
||||||
ERROR 42000: PROCEDURE db_storedproc.sp1 does not exist
|
DROP PROCEDURE sp1;
|
||||||
DROP PROCEDURE IF EXISTS sp1;
|
|
||||||
CREATE PROCEDURE sp1( cnt int(20) )
|
CREATE PROCEDURE sp1( cnt int(20) )
|
||||||
END
|
END
|
||||||
SELECT count(*) into cnt from t2;
|
SELECT count(*) into cnt from t2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user