Hi!
I’m developing some queries on grafana that deal with long numbers (19 digits). Usually, if I don’t force these long numbers to be returned as a string they are rounded and I’m not able to see the precise number. The string move have been working fine up until now but, by some reason, I’m trying to do this string cast and is not working for a specific source. All these long numbers are being rounded however, when I make a simple query with a ‘where’ condition searching for one specific long number I got the desired result.
Example1:
select *
from database.table TD
Result: The expected table but with a column of long numbers all rounded hence not accurate.
Example2:
select *
from database.table TD
where TD.serial = 1234567890123456789
Result: Returns a row with the info related with the user that has the serial number “1234567890123456789” but the serial number itself is presented in something like this “1234567890123450000”
I already tried to use the override feature to convert the results to strings but got no joy. Does anyone have another to idea to get these numbers accurately?