You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When parsing the JSONPath Function, where the function is predefined, and after the function name is parsed, query the FunctionRegistry, which returns a function definition. A function definition has a Seq[FunctionType]
So when parsing the parameters, we must choose the correct parser.
name: $[?search(@ ,'[a-z]+')]
selector: space between arg and comma
isInValid:false
java.lang.ClassCastException:classcom.alibaba.ultramax.mtop.jsonpath.ast.Expression$ValueExpression$PathValueExpression cannot be cast to classscala.collection.mutable.Builder (com.alibaba.ultramax.mtop.jsonpath.ast.Expression$ValueExpression$PathValueExpression and scala.collection.mutable.Builder are in unnamed module of loader 'app')
Motivation:
Input:
Seq[FunctionType]
output:
P[Seq[Expr]]
When parsing the JSONPath Function, where the function is predefined, and after the function name is parsed, query the
FunctionRegistry,
which returns a function definition. A function definition has aSeq[FunctionType]
So when parsing the
parameters
, we must choose the correct parser.Currently:
The text was updated successfully, but these errors were encountered: