mirror of https://gitee.com/bigwinds/arangodb
allow user functions as AQL function call parameters
This commit is contained in:
parent
04f1f0bacd
commit
6e066f4d8e
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue