pub struct SelectExecution<P>{ /* private fields */ }Expand description
Streaming execution handle for SELECT queries.
Implementations§
Source§impl<P> SelectExecution<P>
impl<P> SelectExecution<P>
pub fn new_single_batch( table_name: String, schema: Arc<Schema>, batch: RecordBatch, ) -> SelectExecution<P>
pub fn from_batch( table_name: String, schema: Arc<Schema>, batch: RecordBatch, ) -> SelectExecution<P>
pub fn table_name(&self) -> &str
pub fn schema(&self) -> Arc<Schema>
pub fn stream( self, on_batch: impl FnMut(RecordBatch) -> Result<(), Error>, ) -> Result<(), Error>
pub fn collect(self) -> Result<Vec<RecordBatch>, Error>
pub fn collect_rows(self) -> Result<ExecutorRowBatch, Error>
pub fn into_rows(self) -> Result<Vec<Vec<PlanValue>>, Error>
Trait Implementations§
Source§impl<P> Clone for SelectExecution<P>
impl<P> Clone for SelectExecution<P>
Source§fn clone(&self) -> SelectExecution<P>
fn clone(&self) -> SelectExecution<P>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<P> Freeze for SelectExecution<P>
impl<P> !RefUnwindSafe for SelectExecution<P>
impl<P> Send for SelectExecution<P>
impl<P> Sync for SelectExecution<P>
impl<P> Unpin for SelectExecution<P>
impl<P> !UnwindSafe for SelectExecution<P>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more