Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::rel::Expr - Rust
[go: Go Back, main page]

Enum datafusion::rel::Expr [] [src]

pub enum Expr {
    Column(usize),
    Literal(Value),
    BinaryExpr {
        left: Box<Expr>,
        op: Operator,
        right: Box<Expr>,
    },
    Sort {
        expr: Box<Expr>,
        asc: bool,
    },
    ScalarFunction {
        name: String,
        args: Vec<Expr>,
    },
}

Relation Expression

Variants

index into a value within the row or complex value

literal value

binary expression e.g. "age > 21"

Fields of BinaryExpr

sort expression

Fields of Sort

scalar function

Fields of ScalarFunction

Methods

impl Expr
[src]

[src]

[src]

[src]

Trait Implementations

impl Debug for Expr
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Expr
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Expr

impl Sync for Expr