diff options
Diffstat (limited to 'mysql-test/main/sp-row.result')
-rw-r--r-- | mysql-test/main/sp-row.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/main/sp-row.result b/mysql-test/main/sp-row.result index 4b87798e0bb..7c257297934 100644 --- a/mysql-test/main/sp-row.result +++ b/mysql-test/main/sp-row.result @@ -189,7 +189,7 @@ SELECT a+1; END; $$ CALL p1(); -ERROR 21000: Operand should contain 1 column(s) +ERROR HY000: Illegal parameter data types row and int for operation '+' DROP PROCEDURE p1; CREATE PROCEDURE p1() BEGIN @@ -198,7 +198,7 @@ SELECT a+1; END; $$ CALL p1(); -ERROR 21000: Operand should contain 1 column(s) +ERROR HY000: Illegal parameter data types row and int for operation '+' DROP PROCEDURE p1; # # Comparing the entire ROW to a scalar value |