Skip to content

Commit 935fb47

Browse files
committed
Revert "Fixed by disabling a few tests temporarily."
This reverts commit 925e90f.
1 parent 925e90f commit 935fb47

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

dev/mima

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,6 @@ set -e
2424
FWDIR="$(cd "`dirname "$0"`"/..; pwd)"
2525
cd "$FWDIR"
2626

27-
# To get spark scala version
28-
source "$FWDIR"/bin/load-spark-env.sh
29-
30-
if [[ $SPARK_SCALA_VERSION=="2.11" ]]; then
31-
echo -e "Mima tests are disabled for spark scala version 2.11."
32-
exit 0
33-
fi
34-
3527
echo -e "q\n" | sbt/sbt oldDeps/update
3628
rm -f .generated-mima*
3729

sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/HiveThriftServer2Suite.scala

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class HiveThriftServer2Suite extends FunSuite with Logging {
192192
}
193193
}
194194

195-
ignore("Test JDBC query execution") {
195+
test("Test JDBC query execution") {
196196
withJdbcStatement() { statement =>
197197
val dataFilePath =
198198
Thread.currentThread().getContextClassLoader.getResource("data/files/small_kv.txt")
@@ -214,7 +214,7 @@ class HiveThriftServer2Suite extends FunSuite with Logging {
214214
}
215215
}
216216

217-
ignore("SPARK-3004 regression: result set containing NULL") {
217+
test("SPARK-3004 regression: result set containing NULL") {
218218
withJdbcStatement() { statement =>
219219
val dataFilePath =
220220
Thread.currentThread().getContextClassLoader.getResource(
@@ -239,7 +239,7 @@ class HiveThriftServer2Suite extends FunSuite with Logging {
239239
}
240240
}
241241

242-
ignore("GetInfo Thrift API") {
242+
test("GetInfo Thrift API") {
243243
withCLIServiceClient() { client =>
244244
val user = System.getProperty("user.name")
245245
val sessionHandle = client.openSession(user, "")
@@ -260,15 +260,15 @@ class HiveThriftServer2Suite extends FunSuite with Logging {
260260
}
261261
}
262262

263-
ignore("Checks Hive version") {
263+
test("Checks Hive version") {
264264
withJdbcStatement() { statement =>
265265
val resultSet = statement.executeQuery("SET spark.sql.hive.version")
266266
resultSet.next()
267267
assert(resultSet.getString(1) === s"spark.sql.hive.version=${HiveShim.version}")
268268
}
269269
}
270270

271-
ignore("SPARK-4292 regression: result set iterator issue") {
271+
test("SPARK-4292 regression: result set iterator issue") {
272272
withJdbcStatement() { statement =>
273273
val dataFilePath =
274274
Thread.currentThread().getContextClassLoader.getResource("data/files/small_kv.txt")

0 commit comments

Comments
 (0)