Skip to content

Commit

Permalink
fix table name
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 a66a0dc commit 92d1e4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ test("test FQN table describe table clause") {
val context = new CatalystPlanContext
val logPlan = planTransformer.visit(plan(pplParser, "describe catalog.schema.t", false), context)

val expectedPlan = DescribeTableCommand(TableIdentifier("describe catalog.schema.t"), Map.empty[String, String].empty, isExtended = false, output = DescribeRelation.getOutputAttrs)
val expectedPlan = DescribeTableCommand(TableIdentifier("catalog.schema.t"), Map.empty[String, String].empty, isExtended = false, output = DescribeRelation.getOutputAttrs)
comparePlans(expectedPlan, logPlan, false)
}

Expand Down

0 comments on commit 92d1e4c

Please sign in to comment.