-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync up supported ops for 24.02 plugin release #796
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -125,11 +125,13 @@ case class ExecInfo( | |
} | ||
|
||
private def getOpAction: OpActions.OpAction = { | ||
if (shouldIgnore) { | ||
OpActions.IgnorePerf | ||
} else if (shouldRemove) { | ||
// shouldRemove is checked first because sometimes an exec could have both flag set to true, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a quick fix for a discrepancy I found in the reporting. It had no affect on the accuracy of the results. |
||
// but then we care about having the "NoPerf" part | ||
if (shouldRemove) { | ||
OpActions.IgnoreNoPerf | ||
} else { | ||
} else if (shouldIgnore) { | ||
OpActions.IgnorePerf | ||
} else { | ||
OpActions.Triage | ||
} | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -867,7 +867,7 @@ class SQLPlanParserSuite extends BaseTestSuite { | |
} | ||
} | ||
|
||
test("json_tuple is supported in Generate") { | ||
ignore("json_tuple is supported in Generate: disabled as the operator is disabled by default") { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Disable this unit-test because the JsonTuple is not supported anymore. We do not want to remove the unit-test since this is a temporarily change. |
||
TrampolineUtil.withTempDir { eventLogDir => | ||
val (eventLog, _) = ToolTestUtils.generateEventLog(eventLogDir, | ||
"Expressions in Generate") { spark => | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mattahrens FYI, the plugin release 24.02.0 has
JsonTuple
enabled by default. @viadea asked to disableJsonTuple
to match the changes in RAPIDS branch-24.04.0.