-
Notifications
You must be signed in to change notification settings - Fork 590
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
Support OmniSci Sample method #1680
Comments
|
cc @xmnlab To implement this, would we:
|
|
I think So we would just have to add a mapping to OmniSci to map this to |
|
It looks like it is taking the last of groupby: https://github.com/omnisci/mapd-core/blob/ce5c83d782f30b0ef62dff98fff530fdd65e14d7/QueryEngine/Execute.cpp#L733-L740 |
|
I am working on adding this. |
|
in the documentation: (https://www.omnisci.com/docs/latest/5_math.html#aggregate-function-support-1) so a translation from arbitrary last to sample should works fine |
…ct#1680) Added tests; changed from first to last;
…ct#1680) Added tests; changed from first to last; Changed df_alltypes scope to module Changed api.arbitrary how param default to None Applied suggestions from review
…ct#1680) Added tests; changed from first to last; Changed df_alltypes scope to module Changed api.arbitrary how param default to None Applied suggestions from review
This fixes #1680 by adding support for the `arbitrary` aggregate in MapD by mapping it to the `SAMPLE` function. Author: Saul Shanabrook <s.shanabrook@gmail.com> Closes #1683 from saulshanabrook/omnisci-sample and squashes the following commits: f8d9ee1 [Saul Shanabrook] Add support for arbitrary aggregate in OmniSci/MapD (fixes #1680)
OmniSci supports the
SAMPLEaggregate method that:I don't believe this is implemented in the Ibis wrapper.
The text was updated successfully, but these errors were encountered: