influxdata / flux

Flux is a lightweight scripting language for querying databases (like InfluxDB) and working with data. It's part of InfluxDB 1.7 and 2.0, but can be run independently of those.

Home Page:https://influxdata.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

join.inner not working

rwb196884 opened this issue · comments

image

but

j = join.inner(
  left: generation, 
  right: solcast, 
  on: (l, r) => l._time == r._time, 
  as: (l, r) => ({
    _time: l._time,
    generation: l._value,
    solcast: r._value,
    factor: float(v: l._value) / float( v: r._value)
  })
  ) 
  
  j |> yield()

has no result.

This issue has had no recent activity and will be closed soon.