comphead commented on code in PR #6146:
URL: https://github.com/apache/arrow-datafusion/pull/6146#discussion_r1181112291


##########
datafusion/sql/src/expr/value.rs:
##########
@@ -56,6 +56,8 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> {
             ))
         } else if let Ok(n) = n.parse::<i64>() {
             Ok(lit(n))
+        } else if let Ok(n) = n.parse::<u64>() {

Review Comment:
   @jackkleeman please run `cargo fmt --all` and resubmit the PR



-- 
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

Reply via email to