Skip to content

Commit

Permalink
add PPL describe command
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 74f261a commit 28e942a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class PPLLogicalPlanBasicQueriesTranslatorTestSuite
private val planTransformer = new CatalystQueryPlanVisitor()
private val pplParser = new PPLSyntaxParser()

test("test simple describe clause") {
test("test simple describe table clause") {
// if successful build ppl logical plan and translate to catalyst logical plan
val context = new CatalystPlanContext
val logPlan = planTransformer.visit(plan(pplParser, "describe t", false), context)
Expand All @@ -36,7 +36,7 @@ class PPLLogicalPlanBasicQueriesTranslatorTestSuite
}


test("test FQN table describe clause") {
test("test FQN table describe table clause") {
// if successful build ppl logical plan and translate to catalyst logical plan
val context = new CatalystPlanContext
val logPlan = planTransformer.visit(plan(pplParser, "describe catalog.schema.t", false), context)
Expand Down

0 comments on commit 28e942a

Please sign in to comment.