Skip to content

Commit

Permalink
fix children
Browse files Browse the repository at this point in the history
  • Loading branch information
ulysses-you committed Jun 18, 2020
1 parent f83fd8b commit e444943
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -520,4 +520,6 @@ case class CommentOnTable(child: LogicalPlan, comment: String) extends Command {
/**
* The logical plan of the REFRESH FUNCTION command that works for v2 catalogs.
*/
case class RefreshFunction(child: LogicalPlan) extends Command
case class RefreshFunction(child: LogicalPlan) extends Command {
override def children: Seq[LogicalPlan] = child :: Nil
}

0 comments on commit e444943

Please sign in to comment.