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
mluu12 2021-08-16 17:31:34 -07:00 committed by GitHub
parent e8666ddc22
commit ca35d657bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -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 %}}