File tree Expand file tree Collapse file tree 6 files changed +7
-6
lines changed Expand file tree Collapse file tree 6 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ mod plan_expression_visitor;
33
33
mod plan_filter;
34
34
mod plan_having;
35
35
mod plan_insert_into;
36
- mod plan_kill;
37
36
mod plan_limit;
38
37
mod plan_limit_by;
39
38
mod plan_list;
@@ -152,7 +151,6 @@ pub use plan_having::HavingPlan;
152
151
pub use plan_insert_into:: InsertInputSource ;
153
152
pub use plan_insert_into:: InsertPlan ;
154
153
pub use plan_insert_into:: InsertValueBlock ;
155
- pub use plan_kill:: KillPlan ;
156
154
pub use plan_limit:: LimitPlan ;
157
155
pub use plan_limit_by:: LimitByPlan ;
158
156
pub use plan_list:: ListPlan ;
Original file line number Diff line number Diff line change 1
- // Copyright 2021 Datafuse Labs.
1
+ // Copyright 2022 Datafuse Labs.
2
2
//
3
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
4
// you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ pub use create_database::CreateDatabasePlan;
21
21
mod drop_database;
22
22
pub use drop_database:: DropDatabasePlan ;
23
23
24
+ mod kill;
25
+ pub use kill:: KillPlan ;
26
+
24
27
mod rename_database;
25
28
pub use rename_database:: RenameDatabaseEntity ;
26
29
pub use rename_database:: RenameDatabasePlan ;
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ use std::sync::Arc;
16
16
17
17
use common_exception:: ErrorCode ;
18
18
use common_exception:: Result ;
19
- use common_legacy_planners :: KillPlan ;
19
+ use common_planner :: plans :: KillPlan ;
20
20
21
21
use crate :: interpreters:: Interpreter ;
22
22
use crate :: pipelines:: PipelineBuildResult ;
Original file line number Diff line number Diff line change 14
14
15
15
use common_ast:: ast:: KillTarget ;
16
16
use common_exception:: Result ;
17
- use common_legacy_planners :: KillPlan ;
17
+ use common_planner :: plans :: KillPlan ;
18
18
19
19
use crate :: sql:: planner:: binder:: BindContext ;
20
20
use crate :: sql:: planner:: binder:: Binder ;
Original file line number Diff line number Diff line change @@ -65,7 +65,6 @@ use common_legacy_planners::DropViewPlan;
65
65
use common_legacy_planners:: ExistsTablePlan ;
66
66
use common_legacy_planners:: GrantPrivilegePlan ;
67
67
use common_legacy_planners:: GrantRolePlan ;
68
- use common_legacy_planners:: KillPlan ;
69
68
use common_legacy_planners:: ListPlan ;
70
69
use common_legacy_planners:: OptimizeTablePlan ;
71
70
use common_legacy_planners:: ReclusterTablePlan ;
@@ -82,6 +81,7 @@ use common_legacy_planners::UseDatabasePlan;
82
81
use common_planner:: plans:: CallPlan ;
83
82
use common_planner:: plans:: CreateDatabasePlan ;
84
83
use common_planner:: plans:: DropDatabasePlan ;
84
+ use common_planner:: plans:: KillPlan ;
85
85
use common_planner:: plans:: RenameDatabasePlan ;
86
86
use common_planner:: plans:: ShowCreateDatabasePlan ;
87
87
use common_planner:: plans:: UndropDatabasePlan ;
You can’t perform that action at this time.
0 commit comments