diff --git a/rust/cubestore/cubestore/src/queryplanner/query_executor.rs b/rust/cubestore/cubestore/src/queryplanner/query_executor.rs index 169324e58d7a0..30a6b0c0139d7 100644 --- a/rust/cubestore/cubestore/src/queryplanner/query_executor.rs +++ b/rust/cubestore/cubestore/src/queryplanner/query_executor.rs @@ -7,16 +7,16 @@ use crate::metastore::{Column, ColumnType, IdRow, Index, Partition}; use crate::queryplanner::filter_by_key_range::FilterByKeyRangeExec; use crate::queryplanner::optimizations::CubeQueryPlanner; use crate::queryplanner::planning::{get_worker_plan, Snapshot, Snapshots}; -use crate::queryplanner::pretty_printers::{pp_phys_plan, pp_plan, phys_plan_contains_merge_sort}; +use crate::queryplanner::pretty_printers::{phys_plan_contains_merge_sort, pp_phys_plan, pp_plan}; use crate::queryplanner::serialized_plan::{IndexSnapshot, RowFilter, RowRange, SerializedPlan}; use crate::queryplanner::trace_data_loaded::DataLoadedSize; use crate::store::DataFrame; use crate::table::data::rows_to_columns; use crate::table::parquet::CubestoreParquetMetadataCache; use crate::table::{Row, TableValue, TimestampValue}; +use crate::telemetry::non_merge_sort_query_detected_event; use crate::util::memory::MemoryHandler; use crate::{app_metrics, CubeError}; -use crate::telemetry::non_merge_sort_query_detected_event; use arrow::array::{ make_array, Array, ArrayRef, BinaryArray, BooleanArray, Float64Array, Int16Array, Int32Array, Int64Array, Int64Decimal0Array, Int64Decimal10Array, Int64Decimal1Array, Int64Decimal2Array,