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 b1d68bf commit 2ce590fCopy full SHA for 2ce590f
sql/hive/src/main/scala/org/apache/spark/sql/hive/test/TestHive.scala
@@ -161,8 +161,8 @@ class TestHiveContext(sc: SparkContext) extends HiveContext(sc) {
161
// while we need a logicalPlan so we cannot reuse that.
162
protected[hive] class HiveQLQueryExecution(hql: String)
163
extends this.QueryExecution(HiveQl.parseSql(vs.substitute(hiveconf, hql))) {
164
- def hiveExec() = runSqlHive(hql)
165
- override def toString = hql + "\n" + super.toString
+ def hiveExec(): Seq[String] = runSqlHive(hql)
+ override def toString: String = hql + "\n" + super.toString
166
}
167
168
/**
0 commit comments