Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

[NSE-610] fix hashjoin build time metric #1130

Merged
merged 1 commit into from
Oct 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,9 @@ case class ColumnarShuffledHashJoinExec(
ConverterUtils.releaseArrowRecordBatch(dep_rb)
build_elapse += System.nanoTime() - beforeEval
}
val beforeFinish = System.nanoTime()
val hashRelationResultIterator = hashRelationKernel.finishByIterator()
build_elapse += System.nanoTime() - beforeFinish

val native_function = TreeBuilder.makeFunction(
s"standalone",
Expand Down