SPRKSCL1169
Spark element is missing on the method chaining.
Description
Input code
val reader = sparkSession.read.format("json")
val df = reader.load(path)Output code
/*EWI: SPRKSCL1169 => Function 'org.apache.spark.sql.DataFrameReader.load' is missing on the method chaining*/
val reader = sparkSession.read.format("json")
val df = reader.load(path)