File tree Expand file tree Collapse file tree 12 files changed +56
-7
lines changed Expand file tree Collapse file tree 12 files changed +56
-7
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ members = [
55
55
" src/query/storages/common/cache" ,
56
56
" src/query/storages/common/cache_manager" ,
57
57
" src/query/storages/common/index" ,
58
+ " src/query/storages/common/io" ,
58
59
" src/query/storages/common/pruner" ,
59
60
" src/query/storages/common/table_meta" ,
60
61
" src/query/storages/delta" ,
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ databend-storages-common-blocks = { path = "../storages/common/blocks" }
95
95
databend-storages-common-cache = { path = " ../storages/common/cache" }
96
96
databend-storages-common-cache-manager = { path = " ../storages/common/cache_manager" }
97
97
databend-storages-common-index = { path = " ../storages/common/index" }
98
+ databend-storages-common-io = { path = " ../storages/common/io" }
98
99
databend-storages-common-table-meta = { path = " ../storages/common/table_meta" }
99
100
databend-storages-common-txn = { path = " ../storages/common/txn" }
100
101
jsonb = { workspace = true }
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ use databend_common_exception::Result;
19
19
use databend_common_sql:: plans:: RemoveStagePlan ;
20
20
use databend_common_storage:: StageFileInfo ;
21
21
use databend_common_storage:: StageFilesInfo ;
22
- use databend_common_storages_fuse:: io:: Files ;
23
22
use databend_common_storages_stage:: StageTable ;
23
+ use databend_storages_common_io:: Files ;
24
24
use futures_util:: StreamExt ;
25
25
use log:: debug;
26
26
use log:: error;
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ use databend_common_exception::Result;
21
21
use databend_common_meta_app:: principal:: StageInfo ;
22
22
use databend_common_metrics:: storage:: * ;
23
23
use databend_common_pipeline_core:: Pipeline ;
24
- use databend_common_storages_fuse:: io:: Files ;
25
24
use databend_common_storages_stage:: StageTable ;
25
+ use databend_storages_common_io:: Files ;
26
26
use log:: error;
27
27
use log:: info;
28
28
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ name = " databend-storages-common-io"
3
+ version = { workspace = true }
4
+ authors = { workspace = true }
5
+ license = { workspace = true }
6
+ publish = { workspace = true }
7
+ edition = { workspace = true }
8
+
9
+ [dependencies ]
10
+ databend-common-base = { path = " ../../../../common/base" }
11
+ databend-common-catalog = { path = " ../../../catalog" }
12
+ databend-common-exception = { path = " ../../../../common/exception" }
13
+
14
+ async-backtrace = { workspace = true }
15
+ log = { workspace = true }
16
+ minitrace = { workspace = true }
17
+ opendal = { workspace = true }
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ // Copyright 2021 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 files;
16
+
17
+ pub use files:: Files ;
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ databend-storages-common-blocks = { path = "../common/blocks" }
37
37
databend-storages-common-cache = { path = " ../common/cache" }
38
38
databend-storages-common-cache-manager = { path = " ../common/cache_manager" }
39
39
databend-storages-common-index = { path = " ../common/index" }
40
+ databend-storages-common-io = { path = " ../common/io" }
40
41
databend-storages-common-pruner = { path = " ../common/pruner" }
41
42
databend-storages-common-table-meta = { path = " ../common/table_meta" }
42
43
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 files;
16
15
mod locations;
17
16
pub mod read;
18
17
mod segments;
19
18
mod snapshots;
20
19
mod write;
21
20
22
- pub use files:: Files ;
23
21
pub use locations:: TableMetaLocationGenerator ;
24
22
pub use read:: AggIndexReader ;
25
23
pub use read:: BlockReader ;
You canโt perform that action at this time.
0 commit comments