Struct datafusion_expr::logical_plan::Prepare
source · pub struct Prepare {
pub name: String,
pub data_types: Vec<DataType>,
pub input: Arc<LogicalPlan>,
}Expand description
Prepare a statement but do not execute it. Prepare statements can have 0 or more
Expr::Placeholder expressions that are filled in during execution
Fields§
§name: StringThe name of the statement
data_types: Vec<DataType>Data types of the parameters (Expr::Placeholder)
input: Arc<LogicalPlan>The logical plan of the statements
Trait Implementations§
source§impl PartialEq<Prepare> for Prepare
impl PartialEq<Prepare> for Prepare
impl Eq for Prepare
impl StructuralEq for Prepare
impl StructuralPartialEq for Prepare
Auto Trait Implementations§
impl !RefUnwindSafe for Prepare
impl Send for Prepare
impl Sync for Prepare
impl Unpin for Prepare
impl !UnwindSafe for Prepare
Blanket Implementations§
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.