Skip to content

Commit

Permalink
[hotfix] Fix exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
twalthr committed Aug 2, 2016
1 parent 3f1e8b9 commit 5d2c465
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ case class Sort(order: Seq[Ordering], child: LogicalNode) extends UnaryNode {

override def validate(tableEnv: TableEnvironment): LogicalNode = {
if (tableEnv.isInstanceOf[StreamTableEnvironment]) {
failValidation(s"Distinct on stream tables is currently not supported.")
failValidation(s"Sort on stream tables is currently not supported.")
}
super.validate(tableEnv)
}
Expand Down

0 comments on commit 5d2c465

Please sign in to comment.