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

    https://github.com/apache/flink/pull/3012#discussion_r100247879
  
    --- Diff: 
flink-scala/src/main/scala/org/apache/flink/api/scala/ExecutionEnvironment.scala
 ---
    @@ -348,6 +349,47 @@ class ExecutionEnvironment(javaEnv: JavaEnv) {
         wrap(new DataSource[T](javaEnv, inputFormat, typeInfo, 
getCallLocationName()))
       }
     
    +  def readCsvFileAsRow[T : ClassTag : TypeInformation](
    +    filePath: String,
    +    rowSize: Int,
    +    additionalTypes: Map[Int, Class[_]] = null,
    +    lineDelimiter: String = "\n",
    +    fieldDelimiter: String = ",",
    +    quoteCharacter: Character = null,
    +    ignoreFirstLine: Boolean = false,
    +    ignoreComments: String = null,
    +    lenient: Boolean = false,
    +    includedFields: Array[Int] = null): DataSet[Row] = {
    --- End diff --
    
    Please add more two spase for parameters like as for other methods in 
class, space chars should is 6.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to