1
0
Fork 0

allow user functions as AQL function call parameters

This commit is contained in:
Jan Steemann 2014-01-06 12:57:03 +01:00
parent 04f1f0bacd
commit 6e066f4d8e
1 changed files with 2 additions and 1 deletions

View File

@ -151,7 +151,8 @@ static bool CheckArgumentType (TRI_aql_node_t const* parameter,
param_t found = InitParam();
if (parameter->_type == TRI_AQL_NODE_REFERENCE ||
parameter->_type == TRI_AQL_NODE_FCALL) {
parameter->_type == TRI_AQL_NODE_FCALL ||
parameter->_type == TRI_AQL_NODE_FCALL_USER) {
return true;
}