summaryrefslogtreecommitdiff
path: root/mysql-test/r/sp-row.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/sp-row.result')
-rw-r--r--mysql-test/r/sp-row.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/sp-row.result b/mysql-test/r/sp-row.result
index adb67030feb..d3be7c2a9b9 100644
--- a/mysql-test/r/sp-row.result
+++ b/mysql-test/r/sp-row.result
@@ -210,7 +210,7 @@ SELECT a=1;
END;
$$
CALL p1();
-ERROR 21000: Operand should contain 2 column(s)
+ERROR HY000: Illegal parameter data types row and int for operation '='
DROP PROCEDURE p1;
CREATE PROCEDURE p1()
BEGIN
@@ -219,7 +219,7 @@ SELECT 1=a;
END;
$$
CALL p1();
-ERROR 21000: Operand should contain 1 column(s)
+ERROR HY000: Illegal parameter data types int and row for operation '='
DROP PROCEDURE p1;
#
# Passing the entire ROW to a stored function