Struct datafusion_expr::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: String
The table name
input: Arc<LogicalPlan>
The logical plan
or_replace: bool
Option to not error if table already exists
definition: Option<String>
SQL used to create the view, if available
Trait Implementations§
source§impl Clone for CreateView
impl Clone for CreateView
source§fn clone(&self) -> CreateView
fn clone(&self) -> CreateView
Returns a copy 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 more