fix(query/stdlib/influxdb): return error on point explosion (#12774)
parent
adbfddb0ef
commit
d18c6e5ffe
|
@ -589,6 +589,9 @@ func writeTable(t *ToTransformation, tbl flux.Table) error {
|
|||
}
|
||||
}
|
||||
points, err = tsdb.ExplodePoints(*orgID, *bucketID, points)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return d.PointsWriter.WritePoints(context.TODO(), points)
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue