EPL enhancements in 10.5.0
Apama 10.5.0 includes the following EPL enhancements:
Expressions similar to
10.rand() are now valid. Previously, this resulted in a compiler error as the compiler used to treat
10. as a float. The workaround in previous versions was to either add a space after the integer (for example,
10 .rand()) or to enclose the integer in parentheses (for example,
(10).rand()). This is no longer required.