summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnamalai Gurusami <annamalai.gurusami@oracle.com>2013-02-14 16:33:31 +0530
committerAnnamalai Gurusami <annamalai.gurusami@oracle.com>2013-02-14 16:33:31 +0530
commit14e561f0a6cd226167769c72db72192b1b2e6a3e (patch)
treeaf5e753d538928906741a8ef1302861c0322d67b
parente806e52e40fd25aa2795d48e0e6ffeba21e2648b (diff)
downloadmariadb-git-14e561f0a6cd226167769c72db72192b1b2e6a3e.tar.gz
For the error code ER_TOO_LONG_IDENT, the identifier is expected in the my_error call. So removing this line from here.
-rw-r--r--storage/innodb_plugin/handler/ha_innodb.cc1
1 files changed, 0 insertions, 1 deletions
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);
}
}