Skip to content

Commit

Permalink
Scala: Fix spotless errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rozza authored and jyemin committed Jun 22, 2023
1 parent 12cecea commit 08b05d9
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,13 @@ class AggregatesSpec extends BaseSpec {
),
WindowOutputFields.sum("newField01", "$field01", Some(range(1, CURRENT))),
WindowOutputFields.avg("newField02", "$field02", Some(range(UNBOUNDED, 1))),
WindowOutputFields.percentile("newField02P", "$field02P", List(0.3, 0.9), QuantileMethod.approximate(), Some(range(UNBOUNDED, 1))),
WindowOutputFields.percentile(
"newField02P",
"$field02P",
List(0.3, 0.9),
QuantileMethod.approximate(),
Some(range(UNBOUNDED, 1))
),
WindowOutputFields.median("newField02M", "$field02M", QuantileMethod.approximate(), Some(range(UNBOUNDED, 1))),
WindowOutputFields.stdDevSamp("newField03", "$field03", Some(window)),
WindowOutputFields.stdDevPop("newField04", "$field04", Some(window)),
Expand Down

0 comments on commit 08b05d9

Please sign in to comment.