Skip to content

Commit

Permalink
[FLINK-13708][table-planner-blink] Revert changes in fb7beb8 which is…
Browse files Browse the repository at this point in the history
… a temporary fix
  • Loading branch information
wuchong committed Nov 22, 2019
1 parent 23c9b5a commit f01cdd1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class BatchAbstractTestBase {
new MiniClusterResourceConfiguration.Builder()
.setConfiguration(getConfiguration())
.setNumberTaskManagers(1)
.setNumberSlotsPerTaskManager(DEFAULT_PARALLELISM * 2) // TODO: Revert once FLINK-13708 has been fixed
.setNumberSlotsPerTaskManager(DEFAULT_PARALLELISM)
.build());

@ClassRule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -326,10 +326,6 @@ abstract class AggregateITCaseBase(testName: String) extends BatchTestBase {
"select f0, count(*) from TableName group by f0",
Seq((1, 2L), (2, 2L), (3, 2L)) // count=>long
)
}

@Test
def testGroupBy2(): Unit = {
checkQuery(
Seq(("a", 1, 0), ("b", 2, 4), ("a", 2, 3)),
"select f0, min(f1), min(f2) from TableName group by f0",
Expand Down

0 comments on commit f01cdd1

Please sign in to comment.