MCPcopy Create free account
hub / github.com/apache/datafusion / Cast

Class Cast

datafusion/expr/src/expr.rs:968–973  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

966/// Cast expression
967#[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)]
968pub struct Cast {
969 /// The expression being cast
970 pub expr: Box<Expr>,
971 /// The `DataType` the expression will yield
972 pub field: FieldRef,
973}
974
975impl Cast {
976 /// Create a new Cast expression

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…