Skip to content

Commit

Permalink
update antlr and tests
Browse files Browse the repository at this point in the history
Signed-off-by: YANGDB <[email protected]>
  • Loading branch information
YANG-DB committed Aug 7, 2024
1 parent cb42807 commit a0956f8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ class PPLLogicalPlanBasicQueriesTranslatorTestSuite
val context = new CatalystPlanContext
val logPlan = planTransformer.visit(plan(pplParser, "describe t", false), context)

val projectList: Seq[NamedExpression] = Seq(UnresolvedStar(None))
val expectedPlan = Project(projectList, DescribeTableCommand(TableIdentifier("t"), null, isExtended = false, Seq.empty))
val expectedPlan = DescribeTableCommand(TableIdentifier("t"), null, isExtended = false, Seq.empty)
comparePlans(expectedPlan, logPlan, false)
}

Expand Down

0 comments on commit a0956f8

Please sign in to comment.