added warning to group fn about sort order, closes #1129
parent
ae81534fc6
commit
86fb65b0b1
|
@ -32,6 +32,13 @@ group(columns: ["_time"], mode:"except")
|
||||||
group()
|
group()
|
||||||
```
|
```
|
||||||
|
|
||||||
|
{{% warn %}}
|
||||||
|
#### Group does not guarantee sort order
|
||||||
|
`group()` does not guarantee the sort order of output records.
|
||||||
|
To ensure data is sorted correctly, use [`sort()`](/v2.0/reference/flux/stdlib/built-in/transformations/sort/)
|
||||||
|
after `group()`.
|
||||||
|
{{% /warn %}}
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
|
|
||||||
### columns
|
### columns
|
||||||
|
|
Loading…
Reference in New Issue