pub trait Bind {
type Bound;
// Required method
fn bind(
&self,
schema: SchemaRef,
case_sensitive: bool,
) -> Result<Self::Bound>;
}
Expand description
Bind expression to a schema.
pub trait Bind {
type Bound;
// Required method
fn bind(
&self,
schema: SchemaRef,
case_sensitive: bool,
) -> Result<Self::Bound>;
}
Bind expression to a schema.