File tree Expand file tree Collapse file tree 3 files changed +0
-262
lines changed
Expand file tree Collapse file tree 3 files changed +0
-262
lines changed Original file line number Diff line number Diff line change 1717
1818#[ macro_use]
1919pub mod bit;
20-
21- use crate :: TypeTrait ;
22-
23- /// Getter APIs for Comet vectors.
24- trait ValueGetter < T : TypeTrait > {
25- /// Gets the non-null value at `idx`.
26- ///
27- /// Note that null check needs to be done before the call, to ensure the value at `idx` is
28- /// not null.
29- fn value ( & self , idx : usize ) -> T :: Native ;
30- }
31-
32- /// Setter APIs for Comet mutable vectors.
33- trait ValueSetter < T : TypeTrait > {
34- /// Appends a non-null value `v` to the end of this vector.
35- fn append_value ( & mut self , v : & T :: Native ) ;
36- }
37-
3820mod buffer;
3921pub use buffer:: * ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -40,15 +40,12 @@ use log4rs::{
4040use mimalloc:: MiMalloc ;
4141use once_cell:: sync:: OnceCell ;
4242
43- pub use data_type:: * ;
44-
4543use errors:: { try_unwrap_or_throw, CometError , CometResult } ;
4644
4745#[ macro_use]
4846mod errors;
4947#[ macro_use]
5048pub mod common;
51- mod data_type;
5249pub mod execution;
5350mod jvm_bridge;
5451pub mod parquet;
You can’t perform that action at this time.
0 commit comments