How do I cast a string value to int or long using ...
# general
t
How do I cast a string value to int or long using sql in pinot?
j
Are you planning to aggregate on it? If so, it should be auto-casted
E.g.
select sum(numericStringCol) from myTable
t
I see, but this is a multivalue column, I got it working by using groovy udf.