From 0ba60f7d698fc441ef2fe3fc79a8da9ca8cc5566 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Dec 2025 12:31:56 -0600 Subject: [PATCH] Add v1.12.2 limitation callout for PAST LIMIT and FUTURE LIMIT (#6607) * Initial plan * Add v1.12.2 FUTURE LIMIT and PAST LIMIT callouts Co-authored-by: jstirnaman <212227+jstirnaman@users.noreply.github.com> * fix(v1): Remove patch from Enterprise v1 name * fix(ent1): Remove version from `PAST LIMIT` and `FUTURE LIMIT` callout --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jstirnaman <212227+jstirnaman@users.noreply.github.com> Co-authored-by: Jason Stirnaman --- content/enterprise_influxdb/v1/_index.md | 2 +- .../v1/query_language/manage-database.md | 8 ++++++++ content/influxdb/v1/query_language/manage-database.md | 8 ++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/content/enterprise_influxdb/v1/_index.md b/content/enterprise_influxdb/v1/_index.md index af6e6fade..0f744525d 100644 --- a/content/enterprise_influxdb/v1/_index.md +++ b/content/enterprise_influxdb/v1/_index.md @@ -6,7 +6,7 @@ aliases: - /enterprise/v1.11/ menu: enterprise_influxdb_v1: - name: InfluxDB Enterprise v1.11 + name: InfluxDB Enterprise v1 weight: 1 --- diff --git a/content/enterprise_influxdb/v1/query_language/manage-database.md b/content/enterprise_influxdb/v1/query_language/manage-database.md index 4a1f09b7a..d57aa6efd 100644 --- a/content/enterprise_influxdb/v1/query_language/manage-database.md +++ b/content/enterprise_influxdb/v1/query_language/manage-database.md @@ -317,6 +317,10 @@ For example, if a write request tries to write data to a retention policy with a `PAST LIMIT 6h` and there are points in the request with timestamps older than 6 hours, those points are rejected. +> [!Important] +> `PAST LIMIT` cannot be changed after it is set. +> This will be fixed in a future release. + ##### `FUTURE LIMIT` {metadata="v1.12.0+"} The `FUTURE LIMIT` clause defines a time boundary after and relative to _now_ @@ -328,6 +332,10 @@ For example, if a write request tries to write data to a retention policy with a `FUTURE LIMIT 6h` and there are points in the request with future timestamps greater than 6 hours from now, those points are rejected. +> [!Important] +> `FUTURE LIMIT` cannot be changed after it is set. +> This will be fixed in a future release. + ##### `DEFAULT` Sets the new retention policy as the default retention policy for the database. diff --git a/content/influxdb/v1/query_language/manage-database.md b/content/influxdb/v1/query_language/manage-database.md index 554b8b871..4db5d236c 100644 --- a/content/influxdb/v1/query_language/manage-database.md +++ b/content/influxdb/v1/query_language/manage-database.md @@ -318,6 +318,10 @@ For example, if a write request tries to write data to a retention policy with a `PAST LIMIT 6h` and there are points in the request with timestamps older than 6 hours, those points are rejected. +> [!Important] +> `PAST LIMIT` cannot be changed after it is set. +> This will be fixed in a future release. + ##### `FUTURE LIMIT` {metadata="v1.12.0+"} The `FUTURE LIMIT` clause defines a time boundary after and relative to _now_ @@ -329,6 +333,10 @@ For example, if a write request tries to write data to a retention policy with a `FUTURE LIMIT 6h` and there are points in the request with future timestamps greater than 6 hours from now, those points are rejected. +> [!Important] +> `FUTURE LIMIT` cannot be changed after it is set. +> This will be fixed in a future release. + ##### `DEFAULT` Sets the new retention policy as the default retention policy for the database.