Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
cloud-fan committed Oct 18, 2019
1 parent df18d7a commit 78e1495
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -294,15 +294,15 @@ case class ShowNamespacesStatement(namespace: Option[Seq[String]], pattern: Opti
case class UseStatement(isNamespaceSet: Boolean, nameParts: Seq[String]) extends ParsedStatement

/**
* A ANALYZE TABLE statement, as parsed from SQL.
* An ANALYZE TABLE statement, as parsed from SQL.
*/
case class AnalyzeTableStatement(
tableName: Seq[String],
partitionSpec: Map[String, Option[String]],
noScan: Boolean) extends ParsedStatement

/**
* A ANALYZE TABLE FOR COLUMNS statement, as parsed from SQL.
* An ANALYZE TABLE FOR COLUMNS statement, as parsed from SQL.
*/
case class AnalyzeColumnStatement(
tableName: Seq[String],
Expand Down

0 comments on commit 78e1495

Please sign in to comment.