[][src]Trait datafusion::execution::relation::Relation

pub trait Relation {
    fn next(&mut self) -> Result<Option<RecordBatch>>;
fn schema(&self) -> &Arc<Schema>; }

trait for all relations (a relation is essentially just an iterator over rows with a known schema)

Required methods

get the schema for this relation

Loading content...

Implementors

impl Relation for FilterRelation
[src]

impl Relation for ProjectRelation
[src]

impl Relation for DataSourceRelation
[src]

Loading content...