You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
On databricks, the plan RunningWindowFunctionExec , which has not been supported by GPU, will be applied instead of the WindowExec when matching some requirements. Then some window related IT tests will fail.
Some related ssues: #1680#203
Describe the solution you'd like
Replace the plan RunningWindowFunctionExec with a new or existing GPU plan correctly.
Additional context RunningWindowRunctionExec does not exist outside of Databricks, and will NOT be used when
window function is a SizeBasedWindowFunction, or
window function is a OffsetWindowFunction, or
window function is a PythonUDF, or
window frame specification is not SpecifiedWindowFrame(RowFrame, UnboundedPreceding, CurrentRow)
Since databricks is not open source, so it may not be easy to understand what RunningWindowRunctionExec does and how to support it on GPU perfectly.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
On databricks, the plan
RunningWindowFunctionExec
, which has not been supported by GPU, will be applied instead of theWindowExec
when matching some requirements. Then some window related IT tests will fail.Some related ssues: #1680 #203
Describe the solution you'd like
Replace the plan
RunningWindowFunctionExec
with a new or existing GPU plan correctly.Additional context
RunningWindowRunctionExec
does not exist outside of Databricks, and will NOT be used whenSince databricks is not open source, so it may not be easy to understand what
RunningWindowRunctionExec
does and how to support it on GPU perfectly.The text was updated successfully, but these errors were encountered: