Skip to content

Commit

Permalink
Revert PlanParserSuite
Browse files Browse the repository at this point in the history
  • Loading branch information
beliefer committed Feb 11, 2020
1 parent 4619ac7 commit c743bf3
Showing 1 changed file with 0 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,27 +55,6 @@ class PlanParserSuite extends AnalysisTest {
With(plan, ctes)
}

test("single comment") {
val plan = table("a").select(star())
assertEqual("-- single comment\nSELECT * FROM a", plan)
}

test("bracketed comment case one") {
val plan = table("a").select(star())
assertEqual("/* This is an example of SQL which should not execute:\n" +
" * select 'multi-line';\n" +
" */\n" +
"SELECT * FROM a", plan)
}

test("bracketed comment case two") {
val plan = table("a").select(star())
assertEqual("/*\n" +
"SELECT 'trailing' as x1; -- inside block comment\n" +
"*/\n" +
"SELECT * FROM a", plan)
}

test("case insensitive") {
val plan = table("a").select(star())
assertEqual("sELEct * FroM a", plan)
Expand Down

0 comments on commit c743bf3

Please sign in to comment.