Skip to content

Commit

Permalink
Fixing BatchExecTableSourceScan as well
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitparis committed Jan 21, 2020
1 parent 40899d2 commit e3c5943
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class BatchExecTableSourceScan(
// check that declared and actual type of table source DataStream are identical
if (inputDataType != TypeInfoDataTypeConverter.fromDataTypeToTypeInfo(producedDataType)) {
throw new TableException(s"TableSource of type ${tableSource.getClass.getCanonicalName} " +
s"returned a DataStream of data type $producedDataType that does not match with the " +
s"returned a DataStream of data type $inputDataType that does not match with the " +
s"data type $producedDataType declared by the TableSource.getProducedDataType() method. " +
s"Please validate the implementation of the TableSource.")
}
Expand Down

0 comments on commit e3c5943

Please sign in to comment.