Skip to content

Commit

Permalink
Merge pull request #11846 from NVIDIA/branch-24.12
Browse files Browse the repository at this point in the history
[auto-merge] branch-24.12 to branch-25.02 [skip ci] [bot]
  • Loading branch information
nvauto authored Dec 10, 2024
2 parents d3b31b6 + 96a58d1 commit 4fbecbc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,9 @@ object GpuToTimestamp {
case _ =>
// this is the incompatibleDateFormats case where we do not guarantee compatibility with
// Spark and assume that all non-null inputs are valid
ColumnVector.fromScalar(Scalar.fromBool(true), col.getRowCount.toInt)
withResource(Scalar.fromBool(true)) { s =>
ColumnVector.fromScalar(s, col.getRowCount.toInt)
}
}
}

Expand Down

0 comments on commit 4fbecbc

Please sign in to comment.