From e672c8207ff737463830cdc7b0a39944532ca4af Mon Sep 17 00:00:00 2001 From: xxhZs <1060434431@qq.com> Date: Mon, 29 Jan 2024 13:26:49 +0800 Subject: [PATCH] fix --- src/frontend/src/optimizer/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/optimizer/mod.rs b/src/frontend/src/optimizer/mod.rs index 16de0bacb5e1a..4d551f59587cf 100644 --- a/src/frontend/src/optimizer/mod.rs +++ b/src/frontend/src/optimizer/mod.rs @@ -1,5 +1,3 @@ -use std::assert_matches::assert_matches; -use std::collections::{HashMap, HashSet}; // Copyright 2024 RisingWave Labs // // Licensed under the Apache License, Version 2.0 (the "License"); @@ -39,6 +37,9 @@ pub mod plan_expr_rewriter; mod plan_expr_visitor; mod rule; +use std::assert_matches::assert_matches; +use std::collections::{HashMap, HashSet}; + use fixedbitset::FixedBitSet; use itertools::Itertools as _; pub use logical_optimization::*;