Christopher M. Wolff
Christopher M. Wolff
The above tests seems to be failing sporadically. This test failed for me in an unrelated PR: https://github.com/influxdata/influxdb/pull/23597 Here's the CircleCI link: https://app.circleci.com/pipelines/github/influxdata/influxdb/29594/workflows/4d4db967-c76a-4b38-94b1-9f574ca8731c/jobs/267933 Here is the failure diagnostic: ``` Failed...
Outside of internal errors, we should be able to provide source location info (both start and end locations from the Flux program) for any error that we return to the...
This commit shows the old rules: https://github.com/influxdata/flux/commit/4cce9948886e1d8d1b8e25aa5add2821fa266998 Rules that need re-implementing are: - `filter` rules (push through group, limit, merge with another filter) - `first` (and other selector) push down...
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** A common use case when working with time series data is to...
AstProgram does not compile nor plan its Flux query until Start is invoked: https://github.com/influxdata/flux/blob/master/lang/compiler.go#L291-L311 This means that any errors during semantic analysis or planning will not be received until after...
In this query: ``` from(bucket: "telegraf") |> range(start: -20s) |> filter(fn: (r) => r._measurement == "cpu" and r._field == "usage_user") |> yield(name: "foo") |> group(columns: ["cpu"]) ``` The output for...
The decoder should be able to understand the `#null` annotation as described in the SPEC. Likewise, the encoder should understand when the `#null` annotation is needed and behave accordingly.