Document min and max value limits (#3021)
* Add value limits. * Update content/influxdb/v2.0/reference/flux/language/types.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> * Update content/influxdb/v2.0/reference/flux/language/types.md Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com> Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>pull/3028/head
parent
e8666ddc22
commit
ca35d657bd
|
|
@ -66,6 +66,13 @@ int the set of all signed 64-bit integers | null
|
|||
float the set of all IEEE-754 64-bit floating-point numbers | null
|
||||
```
|
||||
|
||||
These numeric types also have value limits.
|
||||
|
||||
| | Minimum | Maximum |
|
||||
| -------- | --------------- | --------------- |
|
||||
| integer | `-9223372036854775808` | `9223372036854775807` |
|
||||
| uinteger | `0` | `18446744073709551615` |
|
||||
|
||||
{{% note %}}
|
||||
All numeric types are nullable.
|
||||
{{% /note %}}
|
||||
|
|
|
|||
Loading…
Reference in New Issue