Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lgbo-ustc committed Jan 15, 2025
1 parent d5be8ca commit 28ca1ec
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,10 @@ case class CHHashAggregateExecTransformer(
protected lazy val childOutput: Seq[Attribute] = {
val distinctChildOutput = child.output.distinct
if (distinctChildOutput.length != child.output.length) {
logWarning(s"Found duplicate columns in child's output: ${child.output}")
logWarning(s"Found duplicate columns in child's output: ${child.output}\n$child")
}
distinctChildOutput
// distinctChildOutput
child.output
}

override protected def doTransform(context: SubstraitContext): TransformContext = {
Expand Down

0 comments on commit 28ca1ec

Please sign in to comment.