We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is no way with match_recognize in Esper to stay match with the start of the partition.
match_recognize
Would be fantastic to have the ability, like the ^ in snowflake, to match with the start of the partition.
^
The following pattern matches a stock with a price greater than 75.00 at the beginning of the partition:
pattern (^ gt75) define gt75 as price > 75.00
In PATTERN (^ GT75), the first row (not the second row) must have a price greater than 75.00.
PATTERN (^ GT75)
Example from https://docs.snowflake.com/en/user-guide/match-recognize-introduction.html#label-match-recognize-introduction-search-start-or-end-partition
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is no way with
match_recognize
in Esper to stay match with the start of the partition.Would be fantastic to have the ability, like the
^
in snowflake, to match with the start of the partition.The following pattern matches a stock with a price greater than 75.00 at the beginning of the partition:
In
PATTERN (^ GT75)
, the first row (not the second row) must have a price greater than 75.00.Example from
https://docs.snowflake.com/en/user-guide/match-recognize-introduction.html#label-match-recognize-introduction-search-start-or-end-partition
The text was updated successfully, but these errors were encountered: