Description
The following code on Spark Connect produces the following output
Code:
val df = spark.range(3) df.show() df.printSchema()
Output:
+---+ | id| +---+ | 0| | 1| | 2| +---+ root |-- value: long (nullable = true)
The mismatch is that one shows the column as "id" while the other shows this as "value".