Skip to content

Commit

Permalink
'\!' reserved?
Browse files Browse the repository at this point in the history
  • Loading branch information
maropu committed Jun 13, 2020
1 parent 39cfc6f commit 086a2ba
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -405,7 +405,7 @@ class TableIdentifierParserSuite extends SparkFunSuite with SQLHelper {
Files.copy(is, tmpFile.toPath)
val reservedKeywordsInSql2016 = Files.readAllLines(tmpFile.toPath)
.asScala.filterNot(_.startsWith("--")).map(_.trim).toSet
assert((reservedKeywordsInAnsiMode -- reservedKeywordsInSql2016).isEmpty)
assert(((reservedKeywordsInAnsiMode -- Set("!")) -- reservedKeywordsInSql2016).isEmpty)
}
}

Expand Down

0 comments on commit 086a2ba

Please sign in to comment.