You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Fix portability issues with stddev in pg_stat_statements
Stddev is calculated on the fly, and the code in commit717f709 wasusing Float8GetDatumFast() inappropriately to convert the result to aDatum. Mea culpa. It now uses Float8GetDatum().