Skip to content
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 @@ -1090,8 +1090,12 @@ object AuronConverters extends Logging {
extends LeafExecNode
with NativeSupports {

private def nativeSchema = Util.getNativeSchema(output)

// check whether native converting is supported
nativeSchema

override protected def doExecuteNative(): NativeRDD = {
val nativeSchema = Util.getNativeSchema(output)
val partitions = Range(0, outputPartitioning.numPartitions)
.map(i =>
new Partition {
Expand Down
Loading