Skip to content

Commit

Permalink
Fix a nit
Browse files Browse the repository at this point in the history
  • Loading branch information
Chong Gao committed May 10, 2022
1 parent e5b96e3 commit 773a3a4
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -538,10 +538,7 @@ case class GpuMapFilter(argument: Expression,
boundIntermediate: Seq[GpuExpression] = Seq.empty)
extends GpuMapSimpleHigherOrderFunction {

@transient lazy val MapType(keyType, valueType, valueContainsNull) = argument.dataType

// set parameter 'valueContainsNull' to the argument's `valueContainsNull`
override def dataType: DataType = MapType(keyType, valueType, valueContainsNull)
override def dataType: DataType = argument.dataType

override def prettyName: String = "map_filter"

Expand Down

0 comments on commit 773a3a4

Please sign in to comment.