Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PartitionStream in datafusion::physical_plan::streaming - Rust
[go: Go Back, main page]

pub trait PartitionStream: Send + Sync {
    // Required methods
    fn schema(&self) -> &SchemaRef;
    fn execute(&self, ctx: Arc<TaskContext>) -> SendableRecordBatchStream;
}
Expand description

A partition that can be converted into a SendableRecordBatchStream

Required Methods§

source

fn schema(&self) -> &SchemaRef

Returns the schema of this partition

source

fn execute(&self, ctx: Arc<TaskContext>) -> SendableRecordBatchStream

Returns a stream yielding this partitions values

Implementors§