[
https://issues.apache.org/jira/browse/FLINK-1193?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Timo Walther reassigned FLINK-1193:
-----------------------------------
Assignee: Timo Walther
> InvalidTypesException for Array[Array[Tuple2[Int, Double]]]
> -----------------------------------------------------------
>
> Key: FLINK-1193
> URL: https://issues.apache.org/jira/browse/FLINK-1193
> Project: Flink
> Issue Type: Bug
> Reporter: Till Rohrmann
> Assignee: Timo Walther
>
> The TypeExtractor cannot handle nested arrays with non-trivial element types.
> For example, the following code cannot be run
> {code}
> val input = env.fromCollection(List(1,2,3,4))
> val mapped = input.map{
> id => {
> val pair = (1,1.0)
> val a = Array(pair)
> val b = Array(a)
> b
> }
> }
> {code}
> The resulting type Array[Array[Tuple2[Int, Double]]] cannot be extracted. It
> would be nice, if Flink supported these types.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)