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

[][src]Module datafusion::optimizer::type_coercion

The type_coercion optimizer rule ensures that all binary operators are operating on compatible types by adding explicit cast operations to expressions. For example, the operation c_float + c_int would be rewritten as c_float + CAST(c_int AS float). This keeps the runtime query execution code much simpler.

Structs

TypeCoercionRule

Implementation of type coercion optimizer rule