Struct datafusion_expr::logical_plan::CreateView
source · [−]pub struct CreateView {
pub name: String,
pub input: Arc<LogicalPlan>,
pub or_replace: bool,
pub definition: Option<String>,
}Expand description
Creates a view.
Fields
name: StringThe table name
input: Arc<LogicalPlan>The logical plan
or_replace: boolOption to not error if table already exists
definition: Option<String>SQL used to create the view, if available
Trait Implementations
sourceimpl Clone for CreateView
impl Clone for CreateView
sourcefn clone(&self) -> CreateView
fn clone(&self) -> CreateView
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl !RefUnwindSafe for CreateView
impl Send for CreateView
impl Sync for CreateView
impl Unpin for CreateView
impl !UnwindSafe for CreateView
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more