From 753eadb2ccc2dc018c7fa8efebca938cd22f23b6 Mon Sep 17 00:00:00 2001 From: Annamalai Gurusami Date: Thu, 14 Feb 2013 16:33:31 +0530 Subject: [PATCH] For the error code ER_TOO_LONG_IDENT, the identifier is expected in the my_error call. So removing this line from here. --- storage/innodb_plugin/handler/ha_innodb.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/storage/innodb_plugin/handler/ha_innodb.cc b/storage/innodb_plugin/handler/ha_innodb.cc index d24aca5325a..5424c4af68c 100644 --- a/storage/innodb_plugin/handler/ha_innodb.cc +++ b/storage/innodb_plugin/handler/ha_innodb.cc @@ -932,7 +932,6 @@ convert_error_code_to_mysql( case DB_OUT_OF_MEMORY: return(HA_ERR_OUT_OF_MEM); case DB_IDENTIFIER_TOO_LONG: - my_error(ER_TOO_LONG_IDENT, MYF(0)); return(HA_ERR_INTERNAL_ERROR); } }