fix: correct precision and scale in select query
parent
e107ffe987
commit
6f40a9f371
|
@ -26,7 +26,7 @@ module Rating
|
||||||
|
|
||||||
sql = %(
|
sql = %(
|
||||||
SELECT
|
SELECT
|
||||||
(CAST(#{total_count} AS DECIMAL(17, 14)) / #{distinct_count}) count_avg,
|
(CAST(#{total_count} AS DECIMAL(25, 16)) / #{distinct_count}) count_avg,
|
||||||
COALESCE(AVG(value), 0) rating_avg
|
COALESCE(AVG(value), 0) rating_avg
|
||||||
FROM #{rate_table_name}
|
FROM #{rate_table_name}
|
||||||
WHERE
|
WHERE
|
||||||
|
|
Loading…
Reference in New Issue