Github user wuchong commented on a diff in the pull request:

    https://github.com/apache/flink/pull/4532#discussion_r132839934
  
    --- Diff: 
flink-libraries/flink-table/src/main/scala/org/apache/flink/table/runtime/conversion/CRowToJavaTupleMapRunner.scala
 ---
    @@ -16,32 +16,32 @@
      * limitations under the License.
      */
     
    -package org.apache.flink.table.runtime
    +package org.apache.flink.table.runtime.conversion
     
     import java.lang.{Boolean => JBool}
     
     import org.apache.flink.api.common.functions.{MapFunction, RichMapFunction}
     import org.apache.flink.api.common.typeinfo.TypeInformation
    +import org.apache.flink.api.java.tuple.{Tuple2 => JTuple2}
     import org.apache.flink.api.java.typeutils.ResultTypeQueryable
     import org.apache.flink.configuration.Configuration
     import org.apache.flink.table.codegen.Compiler
     import org.apache.flink.table.runtime.types.CRow
     import org.apache.flink.types.Row
    -import org.slf4j.LoggerFactory
    -import org.apache.flink.api.java.tuple.{Tuple2 => JTuple2}
    +import org.slf4j.{Logger, LoggerFactory}
     
     /**
    -  * Convert [[CRow]] to a [[JTuple2]]
    +  * Convert [[CRow]] to a [[JTuple2]].
       */
    -class CRowInputJavaTupleOutputMapRunner(
    +class CRowToJavaTupleMapRunner(
         name: String,
         code: String,
         @transient var returnType: TypeInformation[JTuple2[JBool, Any]])
       extends RichMapFunction[CRow, Any]
               with ResultTypeQueryable[JTuple2[JBool, Any]]
               with Compiler[MapFunction[Row, Any]] {
    --- End diff --
    
    indent


---
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.
---

Reply via email to