1
0
Fork 0

fixed function name in error message

This commit is contained in:
Jan Steemann 2015-03-20 21:38:58 +01:00
parent d512b5fa35
commit cc8ec1750c
1 changed files with 1 additions and 1 deletions

View File

@ -742,7 +742,7 @@ void Executor::generateCodeFunctionCall (AstNode const* node) {
}
else if (conversion == Function::CONVERSION_REQUIRED) {
// the parameter at the position is not a collection name... fail
THROW_ARANGO_EXCEPTION_PARAMS(TRI_ERROR_QUERY_FUNCTION_ARGUMENT_TYPE_MISMATCH, func->internalName.c_str());
THROW_ARANGO_EXCEPTION_PARAMS(TRI_ERROR_QUERY_FUNCTION_ARGUMENT_TYPE_MISMATCH, func->externalName.c_str());
}
else {
generateCodeNode(args->getMember(i));