yyy1000 commented on issue #10274: URL: https://github.com/apache/datafusion/issues/10274#issuecomment-2081736990
> i64(2) is the name, not the type. Yes, I realized that. I was thinking whether we should use a better name to display, for example `CAST(2 AS INTEGER)` in the case but not `Int64(2)` , like it in duckdb. What do you think? @jayzhan211 ``` SELECT CAST(2 as DOUBLE); ┌───────────────────┐ │ CAST(2 AS DOUBLE) │ │ double │ ├───────────────────┤ │ 2.0 │ └───────────────────┘ ``` -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
