We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0eae3 commit 307695eCopy full SHA for 307695e
sql/core/src/main/scala/org/apache/spark/sql/api/java/JavaSchemaRDD.scala
@@ -47,6 +47,9 @@ class JavaSchemaRDD(
47
48
private[sql] val baseSchemaRDD = new SchemaRDD(sqlContext, logicalPlan)
49
50
+ /** Returns the underlying Scala SchemaRDD. */
51
+ val schemaRDD: SchemaRDD = baseSchemaRDD
52
+
53
override val classTag = scala.reflect.classTag[Row]
54
55
override def wrapRDD(rdd: RDD[Row]): JavaRDD[Row] = JavaRDD.fromRDD(rdd)
0 commit comments