Skip to content

Commit

Permalink
fix: Check for MAP-GROUPS in cloud-eligible
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Jan 10, 2025
1 parent 17556e4 commit bc09ca4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/polars-plan/src/client/check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ pub(super) fn assert_cloud_eligible(dsl: &DslPlan) -> PolarsResult<()> {
match plan_node {
#[cfg(feature = "python")]
DslPlan::PythonScan { .. } => return ineligible_error("contains Python scan"),
DslPlan::GroupBy { apply, .. } => return ineligible_error("contains map groups"),
DslPlan::Scan {
sources, scan_type, ..
} => {
Expand Down

0 comments on commit bc09ca4

Please sign in to comment.