From ca35d657bdaebd16cdaba0deea576dc6f8cb1ece Mon Sep 17 00:00:00 2001 From: mluu12 <87089043+mluu12@users.noreply.github.com> Date: Mon, 16 Aug 2021 17:31:34 -0700 Subject: [PATCH] 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 * Update content/influxdb/v2.0/reference/flux/language/types.md Co-authored-by: Scott Anderson Co-authored-by: Scott Anderson --- content/influxdb/v2.0/reference/flux/language/types.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/content/influxdb/v2.0/reference/flux/language/types.md b/content/influxdb/v2.0/reference/flux/language/types.md index ef67a7bf4..ea87ea079 100644 --- a/content/influxdb/v2.0/reference/flux/language/types.md +++ b/content/influxdb/v2.0/reference/flux/language/types.md @@ -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 %}}