diff options
Diffstat (limited to 'mysql-test/main/sp-vars.result')
-rw-r--r-- | mysql-test/main/sp-vars.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/main/sp-vars.result b/mysql-test/main/sp-vars.result index 42e709cc521..a755f8e739f 100644 --- a/mysql-test/main/sp-vars.result +++ b/mysql-test/main/sp-vars.result @@ -1026,11 +1026,11 @@ BEGIN SELECT arg; END| CALL p1((1, 2)); -ERROR HY000: Illegal parameter data types tinyint and row for operation 'SET' +ERROR 21000: Operand should contain 1 column(s) CALL p1((SELECT * FROM t1 LIMIT 1)); -ERROR HY000: Illegal parameter data types tinyint and row for operation 'SET' +ERROR 21000: Operand should contain 1 column(s) CALL p1((SELECT col1, col2 FROM t1 LIMIT 1)); -ERROR HY000: Illegal parameter data types tinyint and row for operation 'SET' +ERROR 21000: Operand should contain 1 column(s) DROP PROCEDURE p1; DROP TABLE t1; |