Calum Murray

Results 80 issues of Calum Murray

**Problem** Currently in the rekt test `TestTriggerDependencyAnnotation`, we do not verify that the trigger is not ready until the PingSource exists. A simple way to fix this would be to...

kind/feature-request
help wanted
area/test-and-release
good first issue
triage/accepted

Fixes #7685 ## Proposed Changes - Add a transform function for an attributes filter - Use the transform function depending on the filter on the trigger in the constructor

approved
size/L

**Describe the bug** When there are more than one APIServerSource deployed to the same namespace, it seems like the eventtypes which are created by the duck reconciler only show up...

kind/bug
triage/accepted

**Problem** For many of the transform functions in event lineage, we will need to do pattern matching. This is because the values of various attributes will be in the form...

kind/feature-request
priority/important-longterm
triage/accepted

**Problem** As trigger filters are an experimental feature, up until now they have not been included directly in the CRD as the API may have changed. However, with the feature...

kind/feature-request
help wanted
triage/accepted

Fixes #931 When visiting the nodes of the AST while parsing the LIKE expression, it looks like we assumed that we would have a valid string literal. However, it is...

This PR attempts to improve the performance of CESQL `LIKE` matches by moving away from building a regex and instead taking a simple greedy algorithm approach (which guarantees O(n+m) time...

Fixes #927 This PR adds benchmarks to run on every TCK test case that we have, as that seemed like the easiest way of getting a good set of test...

As discussed in #1045 , it would be good to provide end users of the SDK the ability to add custom functions to the CESQL parser and runtime. I think...

Currently, the CESQL LIKE expressions build and then evaluate a regex. Since LIKE is a very strict subset of the possible matches one can do with regex, we can implement...