summaryrefslogtreecommitdiff
path: root/sql/udf_example.c
diff options
context:
space:
mode:
authormsvensson@shellback.(none) <>2007-09-22 09:51:54 +0200
committermsvensson@shellback.(none) <>2007-09-22 09:51:54 +0200
commit6f086e56b8c20b931ca60350fb67a595985a38f7 (patch)
treed076227c02d7d5f8ac170bf37bf191934691d8e6 /sql/udf_example.c
parenteb0a290bbd206f0fc72d9e35f9ba7727bf6b5efd (diff)
parentb6708a9757e7e1f077ac88f0154ad29458d52815 (diff)
downloadmariadb-git-6f086e56b8c20b931ca60350fb67a595985a38f7.tar.gz
Merge shellback.(none):/home/msvensson/mysql/mysql-5.0-maint
into shellback.(none):/home/msvensson/mysql/my51-bug30843
Diffstat (limited to 'sql/udf_example.c')
-rw-r--r--sql/udf_example.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/udf_example.c b/sql/udf_example.c
index 6c07a929b04..6f2093cc92f 100644
--- a/sql/udf_example.c
+++ b/sql/udf_example.c
@@ -1106,11 +1106,12 @@ char * is_const(UDF_INIT *initid, UDF_ARGS *args __attribute__((unused)),
}
+
my_bool check_const_len_init(UDF_INIT *initid, UDF_ARGS *args, char *message)
{
if (args->arg_count != 1)
{
- strmov(message, "IS_CONST accepts only one argument");
+ strmov(message, "CHECK_CONST_LEN accepts only one argument");
return 1;
}
if (args->args[0] == 0)
@@ -1140,5 +1141,4 @@ char * check_const_len(UDF_INIT *initid, UDF_ARGS *args __attribute__((unused)),
}
-
#endif /* HAVE_DLOPEN */