Skip to content

Commit

Permalink
address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mgaido91 committed Sep 19, 2018
1 parent 7c4b454 commit 520b64e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,6 @@ select 123456789123456789.1234567890 * 1.123456789123456789;
select 12345678912345.123456789123 / 0.000000012345678;

-- division with negative scale operands
select 26393499451/ 1000e6;
select 26393499451 / 1000e6;

drop table decimals_test;
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ NULL


-- !query 39
select 26393499451/ 1000e6
select 26393499451 / 1000e6
-- !query 39 schema
struct<(CAST(CAST(26393499451 AS DECIMAL(11,0)) AS DECIMAL(11,0)) / CAST(1.000E+9 AS DECIMAL(11,0))):decimal(16,11)>
-- !query 39 output
Expand Down

0 comments on commit 520b64e

Please sign in to comment.