-
-
Notifications
You must be signed in to change notification settings - Fork 2.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
fix: Ensure height is maintained in SQL SELECT 1 FROM
#20241
fix: Ensure height is maintained in SQL SELECT 1 FROM
#20241
Conversation
SELECT 1 FROM
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #20241 +/- ##
==========================================
- Coverage 79.65% 79.64% -0.01%
==========================================
Files 1565 1565
Lines 218202 218208 +6
Branches 2475 2475
==========================================
- Hits 173804 173798 -6
- Misses 43831 43843 +12
Partials 567 567 ☔ View full report in Codecov by Sentry. |
input.iter().all(|e| e.is_scalar(expr_arena)) | ||
} else { | ||
options.flags.contains(FunctionFlags::RETURNS_SCALAR) | ||
false | ||
} |
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.
re-ordered this condition to fix an issue where pl.col("x").null_count() > 0
was not being identified as scalar
Fixes #20058
Fixes #18404