Vishal Garg
05/30/2022, 5:31 AMselect metric_1, sum(metric_2) from table where some_filter = 'x' group by 1 limit 100
If I hit this query through Pinot portal, I get the integer value for sum(metric_2) but from pinot Java client it return double value. I am expecting it to return Integer value. My query would be dynamic in nature so can't query type specific data, I am always querying columns as string in the following way resultSet.getString(row,col)
. Is there any way to configure Java client to read as integer value instead of double?