ygf11 commented on code in PR #3931: URL: https://github.com/apache/arrow-datafusion/pull/3931#discussion_r1002683658
########## datafusion/expr/src/expr.rs: ########## @@ -353,6 +348,22 @@ pub struct GetIndexedField { pub key: ScalarValue, } +/// BETWEEN expression +#[derive(Clone, PartialEq, Eq, Hash)] +pub struct Cast { + /// The expression being cast + pub expr: Box<Expr>, + /// The `DataType` the expression will yield + pub data_type: DataType, +} + +impl Cast { + /// Create a new Between expression Review Comment: Between? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org