-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Failure during creation of plan fragments: Cannot overwrite partitioning with SINGLE (currently set to Optional[HASH]) #14317
Comments
yeah, may be. Although here bucketed tables are not involved, but root cause may be the same. cc @martint @kasiafi is the plan "wrong"? It seems that for |
It happens because this subplan:
is being rewritten to:
by the RemoveRedundantPredicateAboveTableScan rule, which is eliminating the intervening RemoteExchange. The plan fragmenter cannot currently deal with an empty Values node in the context of a partitioned subplan. |
Saw an issue which is reproducible with the following sequence
Query Plan
Failure in PlanFragmenter
The issue is reproducible on current master, as well as as far back as 352
The text was updated successfully, but these errors were encountered: