You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem
Transform functions are how we track changes to eventtypes as events flow through the system. To support the suffix filter, we should implement a transform function to represent how a given eventtype becomes "narrower" as it passes the filter. Specifically, this transform function should (for each attribute set in the suffix filter):
Check if the attribute is already set. If it is and does not have the expected prefix from the filter, return a nil eventtype to model no events passing this filter
If the attribute is not already set, set it to the value expected by the filter, along with an empty variable for the prefix {x}.
If the attribute is compatible with the value required by the filter, but the filter provides more information, update the value to include the filter value. For example, if the value is currently {x}bc, where {x} is a variable, and the suffix filter is abc, then we can update the value to be {x}abc. Similarly, if the current value is abc{x}, and the suffix filter is de, then we can update the value to be abc{x}de.
If the prefix matches the value, but provides no new information, do not change anything. For example, if the value is abc, and the suffix is bc, then there is no need to make any change
This issue is stale because it has been open for 90 days with no
activity. It will automatically close after 30 more days of
inactivity. Reopen the issue with /reopen. Mark the issue as
fresh by adding the comment /remove-lifecycle stale.
Problem
Transform functions are how we track changes to eventtypes as events flow through the system. To support the suffix filter, we should implement a transform function to represent how a given eventtype becomes "narrower" as it passes the filter. Specifically, this transform function should (for each attribute set in the suffix filter):
{x}
.{x}bc
, where{x}
is a variable, and the suffix filter isabc
, then we can update the value to be{x}abc
. Similarly, if the current value isabc{x}
, and the suffix filter isde
, then we can update the value to beabc{x}de
.abc
, and the suffix isbc
, then there is no need to make any changePersona:
Which persona is this feature for?
Exit Criteria
A measurable (binary) test that would indicate that the problem has been resolved.
Time Estimate (optional):
How many developer-days do you think this may take to resolve?
Additional context (optional)
Add any other context about the feature request here.
The text was updated successfully, but these errors were encountered: