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

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <yuan.zhou@intel.com>
  • Loading branch information
zhouyuan committed Jan 4, 2021
1 parent b7542d7 commit 807c161
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,24 +85,6 @@ case class ColumnarSortMergeJoinExec(
val prepareTime = longMetric("prepareTime")
val totaltime_sortmegejoin = longMetric("totaltime_sortmergejoin")
val resultSchema = this.schema
//try {
// ColumnarSortMergeJoin.precheck(
// leftKeys,
// rightKeys,
// resultSchema,
// joinType,
// condition,
// left,
// right,
// joinTime,
// prepareTime,
// totaltime_sortmegejoin,
// numOutputRows,
// sparkConf)
//} catch {
// case e: Throwable =>
// throw e
//}

override def supportsColumnar = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,9 @@ class ColumnarBroadcastExchangeExec(mode: BroadcastMode, child: SparkPlan)
hashRelationKernel.build(
hash_relation_schema,
Lists.newArrayList(hash_relation_expr),
true
)
null,
true,
SparkMemoryUtils.globalMemoryPool())
val iter = ConverterUtils.convertFromNetty(output, input)
var numRows: Long = 0
val _input = new ArrayBuffer[ColumnarBatch]()
Expand Down

0 comments on commit 807c161

Please sign in to comment.