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

Commit

Permalink
[NSE-943] improve rowtocolumn operator (#990)
Browse files Browse the repository at this point in the history
* [NSE-943] Optimize String/Binary Type for Row2Columnar

* Fix TPCDS queries

* Add __AVX512BW__ Check

* [WIP][NSE-943] Utilize CPU Cache by first-row-second-column and fixed-width type Optimization

* Extract vector from functin

* Add optimizations

* Add remaining optimization

* Remove ListType in Native R2C

* Fix Spark UT

* Clean code

* Fix clang format
  • Loading branch information
zhixingheyi-tian authored Jul 13, 2022
1 parent a6be543 commit fadf473
Show file tree
Hide file tree
Showing 3 changed files with 259 additions and 1,274 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ case class ArrowRowToColumnarExec(child: SparkPlan) extends UnaryExecNode {
case d: DecimalType =>
case d: TimestampType =>
case d: BinaryType =>
case d: ArrayType => ConverterUtils.checkIfTypeSupported(d.elementType)
case _ =>
throw new UnsupportedOperationException(s"${field.dataType} " +
s"is not supported in ArrowRowToColumnarExec.")
Expand Down

This file was deleted.

Loading

0 comments on commit fadf473

Please sign in to comment.