jihun-ddock commented on issue #33174: URL: https://github.com/apache/superset/issues/33174#issuecomment-2846492397
@suryanshpratap825 Thank you for your reply. As mentioned in the above comment, when the same query as the query from View query is executed in SQL Lab, if the number is too large, it comes out as a value in the form of a string including `""`. >  And It occurs when Column type is numeric(18, 3) and total value is higher than 10^11. Maybe it's related in https://github.com/apache/superset/issues/30209 Finally, I solved this problem by casting all the Numeric type columns to BIGINT in the query. That way, it doesn't come out as a string(with `""`) and all sections are rendered well. Perhaps, in dealing with large numbers in the frontend code, it needs to be modified so that the values in the string can also come out well. First of all, I'm temporarily responding with a solution through casting, so I think I'll modify the frontend code later. -- 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]
