Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: sperlingxx <[email protected]>
  • Loading branch information
sperlingxx committed May 13, 2021
1 parent 8763aae commit 52bfccd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ case class GpuConcat(children: Seq[Expression]) extends GpuComplexTypeMergingExp
private def stringConcat(batch: ColumnarBatch): GpuColumnVector = {
val rows = batch.numRows()

withResource(ArrayBuffer[ColumnVector]()) { buffer =>
withResource(ArrayBuffer.empty[ColumnVector]) { buffer =>
withResource(GpuScalar.from(null, StringType)) { nullScalar =>
// build input buffer
children.foreach { child =>
Expand Down

0 comments on commit 52bfccd

Please sign in to comment.