diff options
author | amikish <111790456+amikish@users.noreply.github.com> | 2025-04-25 15:00:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-25 15:00:44 +0300 |
commit | 48459a580b146b6ef7ceaff1a1360b17862d9ce8 (patch) | |
tree | 1679cb5172dc5357669608b3f0206073be52d12b | |
parent | 362a646fde4ee34e7b81282c14072277a6133dfc (diff) | |
download | ydb-48459a580b146b6ef7ceaff1a1360b17862d9ce8.tar.gz |
Round TPCH q3 revenue up to 0.001 (#17673)
-rw-r--r-- | ydb/library/benchmarks/queries/tpch/yql/q3.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/benchmarks/queries/tpch/yql/q3.sql b/ydb/library/benchmarks/queries/tpch/yql/q3.sql index a815e7c306f..6c5cf06525e 100644 --- a/ydb/library/benchmarks/queries/tpch/yql/q3.sql +++ b/ydb/library/benchmarks/queries/tpch/yql/q3.sql @@ -47,7 +47,7 @@ where select l_orderkey, - $round(sum(l_extendedprice * ($z1_12 - l_discount)), -2) as revenue, + $round(sum(l_extendedprice * ($z1_12 - l_discount)), -3) as revenue, o_orderdate, o_shippriority from |