Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
zhztheplayer committed Mar 21, 2024
1 parent 4be10db commit c93a0d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package io.glutenproject.cbo.rule

import io.glutenproject.cbo.{Cbo, EnforcerRuleFactory, Property, PropertyDef, PropertySet}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,13 @@ object GlutenProperties {
List.empty
}
case (Conventions.VANILLA_COLUMNAR, Conventions.GLUTEN_COLUMNAR) =>
List(BackendsApiManager.getSparkPlanExecApiInstance.genRowToColumnarExec(
ColumnarToRowExec(node)))
List(
BackendsApiManager.getSparkPlanExecApiInstance.genRowToColumnarExec(
ColumnarToRowExec(node)))
case (Conventions.GLUTEN_COLUMNAR, Conventions.VANILLA_COLUMNAR) =>
List(RowToColumnarExec(
BackendsApiManager.getSparkPlanExecApiInstance.genColumnarToRowExec(node)))
List(
RowToColumnarExec(
BackendsApiManager.getSparkPlanExecApiInstance.genColumnarToRowExec(node)))
case _ => List.empty
}
}
Expand Down

0 comments on commit c93a0d7

Please sign in to comment.