summaryrefslogtreecommitdiff
path: root/mysql-test/r/sp-error.result
diff options
context:
space:
mode:
authorpem@mysql.comhem.se <>2005-05-31 18:36:32 +0200
committerpem@mysql.comhem.se <>2005-05-31 18:36:32 +0200
commit76073d7bf5878e77435406e3b24346a547ea1e14 (patch)
tree151c51e4a5a263cada0599bd33881110da8caf0b /mysql-test/r/sp-error.result
parentda6c4bd5b1e2fe13b93ecc844500290afc0f6661 (diff)
downloadmariadb-git-76073d7bf5878e77435406e3b24346a547ea1e14.tar.gz
Fixed BUG#9529: Stored Procedures: No Warning on truncation of procedure name
during creation. Although it returns an error, consistent with the behaviour for other objects. (Unclear why we would allow the creation of SPs with truncated names.)
Diffstat (limited to 'mysql-test/r/sp-error.result')
-rw-r--r--mysql-test/r/sp-error.result4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/sp-error.result b/mysql-test/r/sp-error.result
index 5eb651e2fca..ccdb46f10d0 100644
--- a/mysql-test/r/sp-error.result
+++ b/mysql-test/r/sp-error.result
@@ -654,4 +654,8 @@ flush tables;
return 5;
end|
ERROR 0A000: FLUSH is not allowed in stored procedures
+create procedure bug9529_90123456789012345678901234567890123456789012345678901234567890()
+begin
+end|
+ERROR 42000: Identifier name 'bug9529_90123456789012345678901234567890123456789012345678901234567890' is too long
drop table t1|