MCPcopy Create free account
hub / github.com/apache/datafusion / skip

Method skip

datafusion/datasource-parquet/src/access_plan.rs:182–184  ·  view source on GitHub ↗

skips the i-th row group (should not be scanned)

(&mut self, idx: usize)

Source from the content-addressed store, hash-verified

180
181 /// skips the i-th row group (should not be scanned)
182 pub fn skip(&mut self, idx: usize) {
183 self.set(idx, RowGroupAccess::Skip);
184 }
185
186 /// scan the i-th row group
187 pub fn scan(&mut self, idx: usize) {

Calls 1

setMethod · 0.45