Closed antonio-olleros closed 8 months ago
The following expression inside a datapoint ruleset yields semantic error: when SecurityType not in securities_with_maturity then isnull(MaturityDate)
when SecurityType not in securities_with_maturity then isnull(MaturityDate)
While this one works: when SecurityType in securities_with_maturity then isnull(MaturityDate)
when SecurityType in securities_with_maturity then isnull(MaturityDate)
Fix the grammar
"not_in" is the correct expression, with an undescore instead of space.
You are completely right... Sorry, I'll close the issue
There is no error, it was my bad
Issue Description
The following expression inside a datapoint ruleset yields semantic error:
when SecurityType not in securities_with_maturity then isnull(MaturityDate)
While this one works:
when SecurityType in securities_with_maturity then isnull(MaturityDate)
Proposed Solution
Fix the grammar