From df35bafefb6af387ccd7cae80a8ba7af28f4cd91 Mon Sep 17 00:00:00 2001 From: Noel Kwan Date: Fri, 9 Aug 2024 10:59:40 +0800 Subject: [PATCH] fix --- .../two_phase_approx_percentile_merge_normal_agg.slt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e_test/streaming/aggregate/two_phase_approx_percentile_merge_normal_agg.slt b/e2e_test/streaming/aggregate/two_phase_approx_percentile_merge_normal_agg.slt index 93063e2bde689..959e3684a9fd2 100644 --- a/e2e_test/streaming/aggregate/two_phase_approx_percentile_merge_normal_agg.slt +++ b/e2e_test/streaming/aggregate/two_phase_approx_percentile_merge_normal_agg.slt @@ -78,13 +78,13 @@ select * from m1; query I select percentile_cont(0.01) within group (order by p_col) as p01, - round_digit(sum(p_col), 2), + round(sum(p_col) * 100), percentile_cont(0.5) within group (order by p_col) as p50, count(*), percentile_cont(0.99) within group (order by p_col) as p99 from t; ---- --969.99 0.55 0.0001 3002 969.9899999999998 +-969.99 55 0.0001 3002 969.9899999999998 statement ok drop materialized view m1;