File tree Expand file tree Collapse file tree 7 files changed +21
-3
lines changed
service/tests/it/sql/planner Expand file tree Collapse file tree 7 files changed +21
-3
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
+ mod builders;
15
16
mod format;
16
- mod select_builder;
17
17
mod semantic;
Original file line number Diff line number Diff line change
1
+ // Copyright 2022 Datafuse Labs.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
15
+ mod select_builder;
16
+ pub use select_builder:: SelectBuilder ;
File renamed without changes.
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ mod aggregate;
16
16
mod bind_context;
17
17
#[ allow( clippy:: module_inception) ]
18
18
mod binder;
19
+ /// SQL builders;
20
+ mod builders;
19
21
mod copy;
20
22
mod ddl;
21
23
mod delete;
@@ -40,5 +42,6 @@ mod update;
40
42
pub use aggregate:: AggregateInfo ;
41
43
pub use bind_context:: * ;
42
44
pub use binder:: Binder ;
45
+ pub use builders:: * ;
43
46
pub use scalar:: ScalarBinder ;
44
47
pub use scalar_common:: * ;
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ mod format;
17
17
mod metadata;
18
18
#[ allow( clippy:: module_inception) ]
19
19
mod planner;
20
- mod select_builder;
21
20
mod semantic;
22
21
23
22
pub ( crate ) mod binder;
@@ -28,12 +27,12 @@ pub use binder::BindContext;
28
27
pub use binder:: Binder ;
29
28
pub use binder:: ColumnBinding ;
30
29
pub use binder:: ScalarBinder ;
30
+ pub use binder:: SelectBuilder ;
31
31
pub use binder:: Visibility ;
32
32
pub use expression_parser:: ExpressionParser ;
33
33
pub use metadata:: * ;
34
34
pub use planner:: Planner ;
35
35
pub use plans:: ScalarExpr ;
36
- pub use select_builder:: SelectBuilder ;
37
36
pub use semantic:: normalize_identifier;
38
37
pub use semantic:: validate_function_arg;
39
38
pub use semantic:: IdentifierNormalizer ;
You can’t perform that action at this time.
0 commit comments