Skip to content

Commit 520b64e

Browse files
committed
address comment
1 parent 7c4b454 commit 520b64e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sql/core/src/test/resources/sql-tests/inputs/typeCoercion/native/decimalArithmeticOperations.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ select 123456789123456789.1234567890 * 1.123456789123456789;
8484
select 12345678912345.123456789123 / 0.000000012345678;
8585

8686
-- division with negative scale operands
87-
select 26393499451/ 1000e6;
87+
select 26393499451 / 1000e6;
8888

8989
drop table decimals_test;

sql/core/src/test/resources/sql-tests/results/typeCoercion/native/decimalArithmeticOperations.sql.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ NULL
328328

329329

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

0 commit comments

Comments
 (0)