[SPARK-3481][SQL] Removes the evil MINOR HACK

This is a follow up of #2352. Now we can finally remove the evil "MINOR HACK", which covered up the eldest bug in the history of Spark SQL (see details [here](https://github.com/apache/spark/pull/2352#issuecomment-55440621)).

Author: Cheng Lian <lian.cs.zju@gmail.com>

Closes #2377 from liancheng/remove-evil-minor-hack and squashes the following commits:

0869c78 [Cheng Lian] Removes the evil MINOR HACK
This commit is contained in:
Cheng Lian 2014-09-13 12:35:40 -07:00 committed by Michael Armbrust
parent a523ceaf15
commit 184cd51c42

View file

@ -250,9 +250,9 @@ abstract class HiveComparisonTest
} }
try { try {
// MINOR HACK: You must run a query before calling reset the first time. if (reset) {
TestHive.sql("SHOW TABLES") TestHive.reset()
if (reset) { TestHive.reset() } }
val hiveCacheFiles = queryList.zipWithIndex.map { val hiveCacheFiles = queryList.zipWithIndex.map {
case (queryString, i) => case (queryString, i) =>