-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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 #2845: fix panic on aggregate functions #2859
Conversation
@@ -415,16 +417,35 @@ func ReduceCountDistinct(values []interface{}) interface{} { | |||
return len(index) | |||
} | |||
|
|||
type NumberType int8 | |||
|
|||
const ( |
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.
At first glance this seems to overlap with the InspectDataType
function in this same package. Not exactly the same, but it seems redundant.
Not sure about this -- we already have the concepts of our own types in the |
May address #2704 |
@dgnorton i'm getting this when i run the tests:
that seems to be what's making the suite fail - are you seeing that locally? |
Taking a presumptive 👍 from @otoolep and my +1 to merge this in. |
fix #2845: fix panic on aggregate functions
No description provided.