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 5416b0f commit fee7e9cCopy full SHA for fee7e9c
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
@@ -457,4 +457,15 @@ class SQLQuerySuite extends QueryTest {
457
dropTempTable("data")
458
setConf("spark.sql.hive.convertCTAS", originalConf)
459
}
460
+
461
+ test("sanity test for SPARK-6618") {
462
+ (1 to 100).par.map { i =>
463
+ val tableName = s"SPARK_6618_table_$i"
464
+ sql(s"CREATE TABLE $tableName (col1 string)")
465
+ catalog.lookupRelation(Seq(tableName))
466
+ table(tableName)
467
+ tables()
468
+ sql(s"DROP TABLE $tableName")
469
+ }
470
471
0 commit comments