Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cannot expand Integer Interval #224

Open
revans2023 opened this issue Jan 12, 2023 · 1 comment
Open

cannot expand Integer Interval #224

revans2023 opened this issue Jan 12, 2023 · 1 comment

Comments

@revans2023
Copy link

revans2023 commented Jan 12, 2023

in http:https://cql.hl7.org/09-b-cqlreference.html#expand it mentions "The Interval overload for expand is a new feature being introduced in CQL 1.5, and has trial-use status." but if it throws an exception in 2.4.0.

CQL unit test that shows failure:
library RCQLEvaluatorExpandInterval1 version '1.0.0'
define AssertCanExpandIntegerInterval:
Message(expand Interval[1, 10] per 1 '1',
Count(expand Interval[1, 10] per 1 '1') != 10,
'Integer interval expanded should result in list',
'Error',
'List should be from 1 to 10 by 1 but found ' & ToString(Count(expand Interval[1, 10] per 1 '1'))
)

the following exception is thrown:
org.opencds.cqf.cql.engine.exception.CqlException: java.lang.ClassCastException: class org.opencds.cqf.cql.engine.runtime.Interval cannot be cast to class java.lang.Iterable (org.opencds.cqf.cql.engine.runtime.Interval is in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @722c41f4; java.lang.Iterable is in module java.base of loader 'bootstrap')
at org.opencds.cqf.cql.engine.elm.execution.Executable.evaluate(Executable.java:33)
at org.opencds.cqf.cql.engine.elm.execution.MessageEvaluator.internalEvaluate(MessageEvaluator.java:68)
at org.opencds.cqf.cql.engine.elm.execution.Executable.evaluate(Executable.java:14)
at org.opencds.cqf.cql.engine.elm.execution.ExpressionDefEvaluator.internalEvaluate(ExpressionDefEvaluator.java:23)
at org.opencds.cqf.cql.engine.elm.execution.Executable.evaluate(Executable.java:14)
at org.opencds.cqf.cql.engine.execution.CqlEngine.evaluateExpressions(CqlEngine.java:191)
at org.opencds.cqf.cql.engine.execution.CqlEngine.evaluate(CqlEngine.java:169)
at org.opencds.cqf.cql.engine.execution.CqlEngine.evaluate(CqlEngine.java:148)
at org.opencds.cqf.cql.evaluator.CqlEvaluator.evaluate(CqlEvaluator.java:89)
at org.opencds.cqf.cql.evaluator.CqlEvaluator.evaluate(CqlEvaluator.java:76)
at org.opencds.cqf.cql.evaluator.cli.command.CqlCommand.call(CqlCommand.java:216)
at org.opencds.cqf.cql.evaluator.cli.command.CqlCommand.call(CqlCommand.java:38)
at picocli.CommandLine.executeUserObject(CommandLine.java:1953)

@revans2023
Copy link
Author

revans2023 commented Jan 12, 2023

The two examples at the bottom of CQL Appendix B section 9.10 (http:https://cql.hl7.org/09-b-cqlreference.html#expand) also have the same issue:
expand Interval[1, 10]
expand Interval[1, 10] per 2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant