null+****@clear*****
null+****@clear*****
2012年 5月 2日 (水) 11:05:53 JST
Kouhei Sutou 2012-05-02 11:05:53 +0900 (Wed, 02 May 2012)
New Revision: 926d3efd5e1e3a00a7e999752e03fc049b18292a
Log:
expr: add more error message
Modified files:
lib/expr.c
Modified: lib/expr.c (+2 -1)
===================================================================
--- lib/expr.c 2012-05-01 13:04:17 +0900 (1065b4c)
+++ lib/expr.c 2012-05-02 11:05:53 +0900 (c22f495)
@@ -543,7 +543,8 @@ grn_expr_create(grn_ctx *ctx, const char *name, unsigned int name_size)
return NULL;
}
if (name_size) {
- ERR(GRN_FUNCTION_NOT_IMPLEMENTED, "");
+ ERR(GRN_FUNCTION_NOT_IMPLEMENTED,
+ "[expr][create] anonymous expression isn't implemented yet");
return NULL;
}
GRN_API_ENTER;