File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ license = "Apache-2.0"
6
6
publish = false
7
7
edition = " 2021"
8
8
9
+ [lib ]
10
+ doctest = false
11
+ test = false
12
+
9
13
[dependencies ]
10
14
common-arrow = {path = " ../arrow" }
11
15
common-base = {path = " ../base" }
Original file line number Diff line number Diff line change @@ -20,6 +20,3 @@ pub use table_io_context::TableDataContext;
20
20
pub use table_io_context:: TableIOContext ;
21
21
22
22
mod table_io_context;
23
-
24
- #[ cfg( test) ]
25
- mod table_io_context_test;
Original file line number Diff line number Diff line change @@ -16,21 +16,20 @@ use std::fmt::Debug;
16
16
use std:: sync:: Arc ;
17
17
18
18
use common_base:: Runtime ;
19
+ use common_context:: IOContext ;
20
+ use common_context:: TableIOContext ;
19
21
use common_dal:: DataAccessor ;
20
22
use common_dal:: DataAccessorBuilder ;
21
23
use common_exception:: ErrorCode ;
22
24
use common_exception:: Result ;
23
25
24
- use crate :: IOContext ;
25
- use crate :: TableIOContext ;
26
-
27
26
/// A default DataAccessorBuilder impl.
28
27
#[ derive( Debug ) ]
29
28
pub struct TestDataAccessorBuilder { }
30
29
31
30
impl DataAccessorBuilder for TestDataAccessorBuilder {
32
31
fn build ( & self ) -> Result < Arc < dyn DataAccessor > > {
33
- // we do not use it in unit test
32
+ // we do not use it in test
34
33
todo ! ( )
35
34
}
36
35
}
You can’t perform that action at this time.
0 commit comments