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
I am trying to find out what causes a bug in the Camunda DMN engine (camunda/camunda-bpm-platform#4075) and was able to narrow it down to a changed behaviour in the FEEL engine from 1.16.0 to 1.16.1. I do apologize for the code, but I am neither familiar with the FEEL engine API nor with scala, so I had to write it in Java with some workarounds.
Describe the bug
I try to evaluate the expression
every k in ? satisfies k.B in ["42"]
with the input
{
"cellInput":[
{
"B": "42"
},
{
"B": "42"
}
]
}
so I would expect the expression to be evaluated to "true". This is confirmed by the FEEL playground.
Hi,
I am trying to find out what causes a bug in the Camunda DMN engine (camunda/camunda-bpm-platform#4075) and was able to narrow it down to a changed behaviour in the FEEL engine from 1.16.0 to 1.16.1. I do apologize for the code, but I am neither familiar with the FEEL engine API nor with scala, so I had to write it in Java with some workarounds.
Describe the bug
I try to evaluate the expression
every k in ? satisfies k.B in ["42"]
with the input
so I would expect the expression to be evaluated to "true". This is confirmed by the FEEL playground.
To Reproduce
Please take a look at the following code.
Up to 1.16.0 this is evaluated correctly to "true", but since 1.16.1 it is evaluated to "false".
Expected behavior
The expression should be evaluated to "true".
Environment
The text was updated successfully, but these errors were encountered: