Filter on the integer column which has more than 7 digits in length in HANA
view is converting into scientific notation. Because of this conversion it is not
showing any data.
For example following query works fine and fetches one row
SELECT "O_CUS", "WKSSALE"
FROM (SELECT "O_CUS", min("WKSSALE") AS "WKSSALE"
FROM "_SYS_BIC"."svc_exe/ANAV_HS_CUST_LAST_SALE"
GROUP BY "O_CUS") TMP
WHERE ("O_CUS" = 123456792);
But when I use same "O_CUS" number filter in Analytical view and
check the SQL it is converting into scientific notation number and not
returning any data
SELECT "O_CUS", "WKSSALE"
FROM (SELECT "O_CUS", min("WKSSALE") AS "WKSSALE"
FROM "_SYS_BIC"."svc_exe/ANAV_HS_CUST_LAST_SALE"
GROUP BY "O_CUS") TMP
WHERE ("O_CUS" = 1.23456792E8)
Are there any DB studio properties that I need to change or is it a HANA bug.
I am using HANA Version: 1.0.61 (SP6.1)