From 63fcdb7e4d9dadae20991b8e220d3b7c0ef22c8d Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Sat, 14 Mar 2026 15:00:49 -0500 Subject: [PATCH] fix(v1): remove incorrect FUTURE/PAST LIMIT ordering caution from OSS spec MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The caution stated that prior to v1.12.3, PAST LIMIT must appear before FUTURE LIMIT. This is incorrect — the correct syntax has always been FUTURE LIMIT before PAST LIMIT. The v1.12.3 fix addresses Enterprise meta-node recording of limits, not parser syntax order. --- content/influxdb/v1/query_language/spec.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/content/influxdb/v1/query_language/spec.md b/content/influxdb/v1/query_language/spec.md index f6e2c0a3e..b7526ee07 100644 --- a/content/influxdb/v1/query_language/spec.md +++ b/content/influxdb/v1/query_language/spec.md @@ -389,12 +389,6 @@ create_database_stmt = "CREATE DATABASE" db_name > [!Note] > When using both `FUTURE LIMIT` and `PAST LIMIT` clauses, `FUTURE LIMIT` must appear before `PAST LIMIT`. -> [!Caution] -> **Prior to InfluxDB v1.12.3**, when using both `FUTURE LIMIT` and `PAST LIMIT` clauses, -> `PAST LIMIT` must appear before `FUTURE LIMIT`. -> [Upgrade to InfluxDB v1.12.3 or later](/influxdb/v1/about_the_project/release-notes/#v1123) -> to use the order shown above. - > [!Warning] > Replication factors do not serve a purpose with single node instances. @@ -432,12 +426,6 @@ create_retention_policy_stmt = "CREATE RETENTION POLICY" policy_name on_clause > [!Note] > When using both `FUTURE LIMIT` and `PAST LIMIT` clauses, `FUTURE LIMIT` must appear before `PAST LIMIT`. -> [!Caution] -> **Prior to InfluxDB v1.12.3**, when using both `FUTURE LIMIT` and `PAST LIMIT` clauses, -> `PAST LIMIT` must appear before `FUTURE LIMIT`. -> [Upgrade to InfluxDB v1.12.3 or later](/influxdb/v1/about_the_project/release-notes/#v1123) -> to use the order shown above. - > [!Warning] > Replication factors do not serve a purpose with single node instances.