From a0956f8b96e750e3733208b75e6503ea536b2de4 Mon Sep 17 00:00:00 2001 From: YANGDB Date: Tue, 6 Aug 2024 22:33:46 -0700 Subject: [PATCH] update antlr and tests Signed-off-by: YANGDB --- .../ppl/PPLLogicalPlanBasicQueriesTranslatorTestSuite.scala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ppl-spark-integration/src/test/scala/org/opensearch/flint/spark/ppl/PPLLogicalPlanBasicQueriesTranslatorTestSuite.scala b/ppl-spark-integration/src/test/scala/org/opensearch/flint/spark/ppl/PPLLogicalPlanBasicQueriesTranslatorTestSuite.scala index 8dc0e0ef2..67a4c7563 100644 --- a/ppl-spark-integration/src/test/scala/org/opensearch/flint/spark/ppl/PPLLogicalPlanBasicQueriesTranslatorTestSuite.scala +++ b/ppl-spark-integration/src/test/scala/org/opensearch/flint/spark/ppl/PPLLogicalPlanBasicQueriesTranslatorTestSuite.scala @@ -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) }