Skip to content

Commit ac2270d

Browse files
author
Joseph Batchik
committed
removing some added test
1 parent a6926db commit ac2270d

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/orc/OrcQuerySuite.scala

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,6 @@ class OrcQuerySuite extends QueryTest with BeforeAndAfterAll with OrcTest {
5656
tempFile
5757
}
5858

59-
test("read orc format") {
60-
val data = (0 to 255).map { i =>
61-
(s"$i", i, i.toLong, i.toFloat, i.toDouble, i.toShort, i.toByte, i % 2 == 0)
62-
}
63-
withOrcFile(data) { file =>
64-
checkAnswer(sqlContext.read.format("orc").load(file), data.toDF().collect())
65-
}
66-
67-
}
68-
6959
test("Read/write All Types") {
7060
val data = (0 to 255).map { i =>
7161
(s"$i", i, i.toLong, i.toFloat, i.toDouble, i.toShort, i.toByte, i % 2 == 0)

0 commit comments

Comments
 (0)