Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
srikrishnak committed Nov 19, 2024
1 parent 16ce9ed commit 4bbcfe9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/cases/arithmetic_decimal/max_decimal.test
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion tests/cases/arithmetic_decimal/min_decimal.test
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion tests/cases/arithmetic_decimal/sum_decimal.test
Original file line number Diff line number Diff line change
Expand Up @@ -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] = <!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>

0 comments on commit 4bbcfe9

Please sign in to comment.