sreemanamala commented on code in PR #17406:
URL: https://github.com/apache/druid/pull/17406#discussion_r1827218405


##########
sql/src/test/java/org/apache/druid/quidem/DruidQuidemCommandHandler.java:
##########
@@ -202,10 +220,16 @@ protected final void executeExplain(Context context) 
throws IOException
         if (node instanceof DruidRel<?>) {
           node = ((DruidRel<?>) node).unwrapLogicalPlan();
         }
-        String str = RelOptUtil.dumpPlan("", node, SqlExplainFormat.TEXT, 
SqlExplainLevel.EXPPLAN_ATTRIBUTES);
+        String str = getString(node);
         context.echo(ImmutableList.of(str));
       }
     }
+
+    protected String getString(RelNode node)

Review Comment:
   made it `convertRelToString`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to