Hi Team, I am using Pinot Java client 0.7.1 for qu...
# troubleshooting
v
Hi Team, I am using Pinot Java client 0.7.1 for querying the Pinot. My query looks something like this:
select 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?