Skip to content

Commit

Permalink
Fix spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
costin committed Oct 1, 2024
1 parent 586dabe commit a9f4358
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,6 @@ public void testAggsInsideGrouping() {
);
}


public void testAggFilterOnNonAggregates() {
assertEquals(
"1:36: WHERE clause allowed only for aggregate functions, none found in [emp_no + 1]",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -352,12 +352,13 @@ public void testStatsWithGroupKeyAndMixedAggAndFilter() throws Exception {
List.of(min_alias, max_filter, avg_filter, a)
),
processingCommand("""
stats
min = min(a),
max = max(a) WHERE (a % 3 > 10 OR a / 2 > 100),
avg = avg(a) WHERE a / 2 > 100
BY a
"""));
stats
min = min(a),
max = max(a) WHERE (a % 3 > 10 OR a / 2 > 100),
avg = avg(a) WHERE a / 2 > 100
BY a
""")
);
}

public void testStatsWithoutGroupKeyMixedAggAndFilter() throws Exception {
Expand Down

0 comments on commit a9f4358

Please sign in to comment.