From 4bbcfe94d3d4172be65c2fb1c8396305132882c2 Mon Sep 17 00:00:00 2001 From: Sri Krishna chowdary K Date: Tue, 19 Nov 2024 23:25:33 +0530 Subject: [PATCH] fix typos --- tests/cases/arithmetic_decimal/max_decimal.test | 2 +- tests/cases/arithmetic_decimal/min_decimal.test | 2 +- tests/cases/arithmetic_decimal/sum_decimal.test | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cases/arithmetic_decimal/max_decimal.test b/tests/cases/arithmetic_decimal/max_decimal.test index 68bb5cec6..f04d8a34a 100644 --- a/tests/cases/arithmetic_decimal/max_decimal.test +++ b/tests/cases/arithmetic_decimal/max_decimal.test @@ -9,7 +9,7 @@ max((2000000000, -3217908979, 629000000, -100000000, 0, 987654321)::dec<10, 0>) max((2.5, 0, 5.0, -2.5, -7.5)::dec<2, 1>) = 5.0::dec<2, 1> max((99999999999999999999999999999999999999, 0, -99999999999999999999999999999999999998, 111111111, -76)::dec<38, 0>) = 99999999999999999999999999999999999999::dec<38, 0> -# null_handling: Examples with null as unput or output +# null_handling: Examples with null as input or output max((Null, Null, Null)::dec<1, 0>) = null::dec<1, 0> max(()::dec<1, 0>) = null::dec<1, 0> max((2000000000, Null, 629000000, -100000000, Null, 987654321)::dec<10, 0>) = 2000000000::dec<10, 0> diff --git a/tests/cases/arithmetic_decimal/min_decimal.test b/tests/cases/arithmetic_decimal/min_decimal.test index bbbdd508a..7ecf5769f 100644 --- a/tests/cases/arithmetic_decimal/min_decimal.test +++ b/tests/cases/arithmetic_decimal/min_decimal.test @@ -9,7 +9,7 @@ min((2000000000, -3217908979, 629000000, -100000000, 0, 987654321)::dec<10, 0>) min((2.5, 0, 5.0, -2.5, -7.5)::dec<2, 1>) = -7.5::dec<2, 1> min((99999999999999999999999999999999999999, -99999999999999999999999999999999999998, -99999999999999999999999999999999999997, 0, 1111)::dec<38, 0>) = -99999999999999999999999999999999999998::dec<38, 0> -# null_handling: Examples with null as unput or output +# null_handling: Examples with null as input or output min((Null, Null, Null)::dec<1, 0>) = Null::dec<1, 0> min(()::dec<1, 0>) = Null::dec<1, 0> min((2000000000, Null, 629000000, -100000000, Null, 987654321)::dec<10, 0>) = -100000000::dec<10, 0> diff --git a/tests/cases/arithmetic_decimal/sum_decimal.test b/tests/cases/arithmetic_decimal/sum_decimal.test index af2eae936..cb257e32d 100644 --- a/tests/cases/arithmetic_decimal/sum_decimal.test +++ b/tests/cases/arithmetic_decimal/sum_decimal.test @@ -10,7 +10,7 @@ sum((2.5000007152557373046875, 7.0000007152557373046875, 0, 7.000000715255737304 # overflow: Examples demonstrating overflow behavior sum((99999999999999999999999999999999999999, 1, 1, 1, 1, 99999999999999999999999999999999999999)::dec<38, 0>) [overflow:ERROR] = -# null_handling: Examples with null as unput or output +# null_handling: Examples with null as input or output sum((Null, Null, Null)::dec<1, 0>) = Null::dec<38, 0> sum(()::dec<1, 0>) = Null::dec<38, 0> sum((200000, Null, 629000, -10000, 0, 987621)::dec<6, 0>) = 1806621::dec<38, 0>