From 377e10815230c604f84020696cc05e8bf890af9a Mon Sep 17 00:00:00 2001 From: Stuart Carnie Date: Thu, 25 May 2023 13:05:44 +1000 Subject: [PATCH] chore: No need to be exported from current module --- iox_query_influxql/src/plan/rewriter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iox_query_influxql/src/plan/rewriter.rs b/iox_query_influxql/src/plan/rewriter.rs index 3bd0943a84..ac85fa58b0 100644 --- a/iox_query_influxql/src/plan/rewriter.rs +++ b/iox_query_influxql/src/plan/rewriter.rs @@ -1450,7 +1450,7 @@ pub(crate) enum ProjectionType { /// Holds high-level information as the result of analysing /// a `SELECT` query. #[derive(Default, Debug, Copy, Clone)] -pub(crate) struct SelectStatementInfo { +struct SelectStatementInfo { /// Identifies the projection type for the `SELECT` query. pub projection_type: ProjectionType, }