Ironluca
Ironluca

Reputation: 3762

Apache Spark SQL Jar - No Row interface found

This is probably some confusion with Apache Spark jars, however, I am unable to solve this. The spark sql jat that is found under 'jars' directory contains the spark sql jar, however the jar does not contain the Row interface calss:

image attached

Are any other jars need to be included to get the Row interface, Spark javadoc states that it is under the package org.apache.spark.sql

Will really appreciate any help.

Upvotes: 1

Views: 169

Answers (1)

T. Gawęda
T. Gawęda

Reputation: 16086

It's in spark-catalyst subproject, not main spark-sql.

Search for org.apache.spark:spark-catalyst dependency

Upvotes: 2

Related Questions