i noticed in DataFrame that to get the rdd out of it some conversions are
done:
  val converter = CatalystTypeConverters.createToScalaConverter(schema)
  rows.map(converter(_).asInstanceOf[Row])

does this mean DataFrame internally does not use the standard scala types?
why not?

Reply via email to