1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix for bug #6710 (CREATE FUNCTION fails with 'Unknown error')

sql/sql_parse.cc:
  error message added
This commit is contained in:
unknown
2005-07-23 17:21:27 +05:00
parent bc8599b485
commit 1517f4b6e8

View File

@ -3400,6 +3400,7 @@ purposes internal to the MySQL server", MYF(0));
if (!(res = mysql_create_function(thd,&lex->udf)))
send_ok(thd);
#else
net_printf(thd, ER_CANT_OPEN_LIBRARY, lex->udf.dl, 0, "feature disabled");
res= -1;
#endif
break;