Expand description
Logical Expressions: Expr
Structs§
- Aggregate
Function - Aggregate function
- AggregateUDF
- User Defined Aggregate Function
- Alias
- Alias expression
- Between
- BETWEEN expression
- Binary
Expr - Binary expression
- Case
- CASE expression
- Cast
- Cast expression
- Exists
- EXISTS expression
- InList
- InList expression
- InSubquery
- IN subquery
- Like
- LIKE expression
- Placeholder
- Placeholder, representing bind parameter values such as
$1
or$name
. - Planned
Replace Select Item - The planned expressions for
REPLACE
- Scalar
Function - ScalarFunction expression invokes a built-in scalar function
- Sort
- SORT expression
- TryCast
- TryCast Expression
- Unnest
- UNNEST expression.
- Wildcard
Options - Additional options for wildcards, e.g. Snowflake
EXCLUDE
/RENAME
and BigqueryEXCEPT
. - Window
Function - Window function
Enums§
- Expr
- Represents logical expressions such as
A + 1
, orCAST(c1 AS int)
. - GetField
Access - Access a sub field of a nested type, such as
Field
orList
- Grouping
Set - Grouping sets
- Window
Function Definition - A function used as a SQL window function
Constants§
Functions§
- physical_
name - The name of the column (field) that this
Expr
will produce in the physical plan. The difference from Expr::schema_name is that top-level columns are unqualified. - schema_
name_ from_ exprs - Get schema_name for Vector of expressions
- schema_
name_ from_ sorts