Trait tidb_query_expr::types::function::RpnFnArg [−][src]
A single argument of an RPN function.
Associated Types
Required methods
fn get(&self, row: usize) -> Self::Type
[src][−]
Gets the value in the given row.
fn get_bit_vec(&self) -> (Option<&BitVec>, bool)
[src][−]
Gets the bit vector of the arg.
Returns None
if scalar value, and bool indicates whether
all is null or isn’t null, otherwise a BitVec.
Returns Some
if vector value, and bool indicates whether
stored bitmap vector has the same layout as elements,
aka. logical_rows is identical or not. If logical_rows is
identical, the second tuple element yields true.