I'm using ADF pipeline to copy data from data lake to blob storage and then to table storage. Table storage has a column which includes integer values (column: Age). On trying to query the data in table storage
https://myaccount.table.core.windows.net/Customers()?$filter=Age%20eq%2030 -> (age 30 is considered as integer)
the output is null.
On updating the query to
https://myaccount.table.core.windows.net/Customers()?$filter=Age%20eq%20'30' -> (age 30 is considered as string)
it returned right output.
I used the same adf pipeline to copy data from data lake to cosmos db sql api. When I used query
SELECT * FROM c WHERE c.Age = 30
it returned right output. I tried
SELECT * FROM c WHERE c.Age > 30
it also returned right output.
So, cosmos db is accepting integer columns whereas table storage is only accepting string values. Why is that? How do I resolve this issue in table storage so that it will accept integer columns? Please let me know. Thank you!

