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 7ecd9f5 commit 0d91c0aCopy full SHA for 0d91c0a
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveComparisonTest.scala
@@ -287,7 +287,9 @@ abstract class HiveComparisonTest
287
for (table <- Seq("src", "srcpart")) {
288
val hasMatchingQuery = queryList.exists { query =>
289
val normalizedQuery = query.toLowerCase.stripSuffix(";")
290
- normalizedQuery.endsWith(table) || normalizedQuery.contains(s"from $table")
+ normalizedQuery.endsWith(table) ||
291
+ normalizedQuery.contains(s"from $table") ||
292
+ normalizedQuery.contains(s"from default.$table")
293
}
294
if (hasShowTableCommand || hasMatchingQuery) {
295
TestHive.loadTestTable(table)
0 commit comments