Skip to content

Commit

Permalink
[hotfix][table-planner-blink] Fix aggregate test
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtYoung committed Apr 3, 2019
1 parent 3b817a0 commit 4775207
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ abstract class AggregateTestBase extends TableTestBase {

@Test
def testCannotCountOnMultiFields(): Unit = {
val sql = "SELECT b, COUNT(a, c) FROM MyTable GROUP BY b"
val sql = "SELECT b, COUNT(a, c) FROM MyTable1 GROUP BY b"
thrown.expect(classOf[TableException])
thrown.expectMessage("We now only support the count of one field")
util.verifyPlan(sql)
Expand Down

0 comments on commit 4775207

Please sign in to comment.