Github user fhueske commented on a diff in the pull request:
https://github.com/apache/flink/pull/3003#discussion_r92359852
--- Diff:
flink-libraries/flink-table/src/main/scala/org/apache/flink/api/table/typeutils/TypeConverter.scala
---
@@ -26,13 +26,15 @@ import
org.apache.flink.api.common.typeutils.CompositeType
import org.apache.flink.api.java.operators.join.JoinType
import org.apache.flink.api.java.tuple.Tuple
import org.apache.flink.api.java.typeutils.{PojoTypeInfo, TupleTypeInfo}
-import org.apache.flink.api.table.{FlinkTypeFactory, Row, TableException}
+import org.apache.flink.api.table.{FlinkTypeFactory, TableException}
+import org.apache.flink.types.Row
import scala.collection.JavaConversions._
object TypeConverter {
- val DEFAULT_ROW_TYPE = new
RowTypeInfo(Seq()).asInstanceOf[TypeInformation[Any]]
+ val DEFAULT_ROW_TYPE = new
org.apache.flink.api.java.typeutils.RowTypeInfo(
--- End diff --
Import `RowTypeInfo`
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---