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

[NSE-540] enable reuse subquery #543

Merged
merged 4 commits into from
Nov 17, 2021
Merged
Changes from 1 commit
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 @@ -271,11 +271,6 @@ object ColumnarExpressionConverter extends Logging {
columnarDivide,
expr)
}
case oaps: com.intel.oap.expression.ColumnarScalarSubquery =>
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

note: this removes columnar subquery support, will fix this in another patch

oaps
case s: org.apache.spark.sql.execution.ScalarSubquery =>
logInfo(s"${expr.getClass} ${expr} is supported, no_cal is $check_if_no_calculation.")
new ColumnarScalarSubquery(s)
case c: Concat =>
check_if_no_calculation = false
logInfo(s"${expr.getClass} ${expr} is supported, no_cal is $check_if_no_calculation.")
Expand Down