Github user kunal642 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2830#discussion_r226980043
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/parser/CarbonSpark2SqlParser.scala
---
@@ -493,6 +493,23 @@ class CarbonSpark2SqlParser extends CarbonDDLSqlParser
{
showHistory.isDefined)
}
+
+ protected lazy val cli: Parser[LogicalPlan] =
+ (SHOW ~> SUMMARY ~> FOR ~> TABLE) ~ (ident <~ ".").? ~ ident ~
--- End diff --
Change `(SHOW ~> SUMMARY ~> FOR ~> TABLE) ~ (ident <~ ".").?` to `(SHOW ~>
SUMMARY ~> FOR ~> TABLE) ~> (ident <~ ".").?` as we dont want the output of
show summary for table
---