Cloud-Architect-Emma commented on PR #40190: URL: https://github.com/apache/superset/pull/40190#issuecomment-4466486838
Hi @konmitya, I've opened a PR to fix this: apache/superset#40190 The root cause is that ClickHouse returns numeric SUM() columns as strings, and the existing `infer_objects()` call doesn't convert them. The fix replaces it with `pd.to_numeric(errors="ignore")` which correctly handles string-encoded numerics. -- 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]
