From 4fc5a90d606e41a913576bdb9fab6029e05e5e44 Mon Sep 17 00:00:00 2001 From: Stuart Carnie Date: Mon, 8 May 2023 16:19:16 +1000 Subject: [PATCH] chore: Update docs --- iox_query_influxql/src/plan/rewriter.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/iox_query_influxql/src/plan/rewriter.rs b/iox_query_influxql/src/plan/rewriter.rs index ceae4ec680..1ef0838571 100644 --- a/iox_query_influxql/src/plan/rewriter.rs +++ b/iox_query_influxql/src/plan/rewriter.rs @@ -58,12 +58,8 @@ fn has_multiple_measurements(s: &Select) -> bool { } /// Map a `SelectStatement` to a `Select`, which is an intermediate representation to be -/// used by the InfluxQL planner. Mapping also expands any wildcards in the `FROM` and -/// projection clauses. -/// -/// # NOTE -/// -/// The goal is that `Select` will eventually be used by the InfluxQL planner. +/// used by the InfluxQL planner. Mapping may perform other transformations, such as also +/// expanding wildcards. pub(super) fn map_select(s: &dyn SchemaProvider, stmt: &SelectStatement) -> Result