chore: Update docs

pull/24376/head
Stuart Carnie 2023-05-08 16:19:16 +10:00
parent 74b5c32440
commit 4fc5a90d60
No known key found for this signature in database
GPG Key ID: 848D9C9718D78B4F
1 changed files with 2 additions and 6 deletions

View File

@ -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<Select> {
check_features(stmt)?;