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_expr - Rust
[go: Go Back, main page]

Crate datafusion_expr

source ·
Expand description

DataFusion is an extensible query execution framework that uses Apache Arrow as its in-memory format.

This crate is a submodule of DataFusion that provides types representing logical query plans (LogicalPlan) and logical expressions (Expr) as well as utilities for working with these types.

The expr_fn module contains functions for creating expressions.

Re-exports

Modules

Macros

Structs

Enums

  • Enum of all built-in scalar functions
  • Represents the result of evaluating an expression: either a single ScalarValue or an ArrayRef.
  • Operators applied to expressions
  • Indicates whether and how a filter expression can be handled by a TableProvider for table scans.
  • Indicates the type of this table for metadata/catalog purposes.
  • A function’s type signature defines the types of arguments the function supports.
  • A function’s volatility, which defines the functions eligibility for certain optimizations

Constants

  • Constant that is used as a placeholder for any valid timezone. This is used where a function can accept a timestamp type with any valid timezone, it exists to avoid the need to enumerate all possible timezones. See TypeSignature for more details.

Statics

  • Currently supported types by the nullif function. The order of these types correspond to the order on which coercion applies This should thus be from least informative to most informative

Traits

  • Describes an aggregate functions’s state.
  • Trait for converting a type to a Literal literal expression.
  • Partition evaluator for Window Functions
  • The TableSource trait is used during logical query planning and optimizations and provides access to schema information and filter push-down capabilities. This trait provides a subset of the functionality of the TableProvider trait in the core datafusion crate. The TableProvider trait provides additional capabilities needed for physical query execution (such as the ability to perform a scan). The reason for having two separate traits is to avoid having the logical plan code be dependent on the DataFusion execution engine. Other projects may want to use DataFusion’s logical plans and have their own execution engine.
  • Trait for converting a type to a literal timestamp

Functions