Flink throwed ArithmeticException(on-terminating decimal expansion no exact representable decimal result) when I executed below query:
SELECT productId, COUNT(order), COUNT(order)/100.0
From product
GROUP BY productId
I can't find a way from the document or google to get rid of this issue. Thanks.