dave-csc opened a new issue, #7265:
URL: https://github.com/apache/hop/issues/7265
### Apache Hop version?
2.18.1-SNAPSHOT
### Java version?
21.0.11
### Operating system
Linux
### What happened?
Constant values injected via Hop variables are included as they are and not
parsed. This can cause errors in some injected transforms like **Java Filter**,
the version 2.18.1 would render an expression filter like this:
`Boolean.parseBoolean("${INCLUDE_NULLS}") || ${VALUE_FIELD_NAME} != null`
whereas a correct parse (made up to 2.17) would be like:
`Boolean.parseBoolean("false") || elementValue != null`
**_Marked as P1 for regression, issue is not present in 2.17_**
(see [this
post](https://github.com/apache/hop/issues/7257#issuecomment-4670880271) for
the exact snapshot used for the test)
### Issue Priority
Priority: 1
### Issue Component
Component: Transforms
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]