-
Notifications
You must be signed in to change notification settings - Fork 78
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
Bugfix: Calling count with None arguments #768
Bugfix: Calling count with None arguments #768
Conversation
In #771, I flirted with the idea of removing Now that we have the benefit of the EDIT: Thinking a little more, would The other thing coming out of #771 is that we could use a better |
In regards to aliases, I do think putting them on the wrappers makes sense. One thing I didn't do with #750 was to remove the alias function definitions on the rust side, even when there is an alias in the python wrapper. I'll add an issue to make sure that gets cleaned up. Yes, In regards to |
First, excellent upstream PR. I literally have "improve upstream Builder API" in my post upgrade hit-list, so I'm very happy to see that you've knocked it out. Second, we can absolutely wait till 41. I've been slow to the 40 upgrade, so let's get it out the door first.
Could |
…it is similar to count_star but still enables you to select distinct=True.
Excellent suggestion. Pushed the change. |
Which issue does this PR close?
None
Rationale for this change
This is a two line bugfix.
What changes are included in this PR?
If the user calls
count()
it should internally usecount_star()
Are there any user-facing changes?
None