File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9898 pushd kernel
9999 echo "Testing with $(cargo msrv show --output-format minimal)"
100100 cargo +$(cargo msrv show --output-format minimal) nextest run --locked
101+ cargo +$(cargo msrv show --output-format minimal) test --doc
101102 docs :
102103 runs-on : ubuntu-latest
103104 env :
Original file line number Diff line number Diff line change @@ -505,6 +505,9 @@ pub trait RowVisitor {
505505/// fn apply_selection_vector(self: Box<Self>, selection_vector: Vec<bool>) -> DeltaResult<Box<dyn EngineData>> {
506506/// todo!() // filter out unselected rows and return the new set of data
507507/// }
508+ /// fn has_field(&self, name: &ColumnName) -> bool {
509+ /// todo!() // determine whether the field exists in the data
510+ /// }
508511/// }
509512/// ```
510513pub trait EngineData : AsAny {
You can’t perform that action at this time.
0 commit comments