pub struct RangeFunc {}Trait Implementations§
Source§impl TableFunctionImpl for RangeFunc
impl TableFunctionImpl for RangeFunc
Source§fn call_with_args(
&self,
args: TableFunctionArgs<'_, '_>,
) -> Result<Arc<dyn TableProvider>>
fn call_with_args( &self, args: TableFunctionArgs<'_, '_>, ) -> Result<Arc<dyn TableProvider>>
Create a table provider
Source§fn call(
&self,
_exprs: &[Expr],
) -> Result<Arc<dyn TableProvider>, DataFusionError>
fn call( &self, _exprs: &[Expr], ) -> Result<Arc<dyn TableProvider>, DataFusionError>
👎Deprecated since 53.0.0:
Implement TableFunctionImpl::call_with_args instead
Create a table provider
Auto Trait Implementations§
impl Freeze for RangeFunc
impl RefUnwindSafe for RangeFunc
impl Send for RangeFunc
impl Sync for RangeFunc
impl Unpin for RangeFunc
impl UnsafeUnpin for RangeFunc
impl UnwindSafe for RangeFunc
Blanket Implementations§
impl<T> Allocation for T
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> 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