Skip to content
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

[window] Disable GPU for COUNT(exp) queries #666

Merged
merged 1 commit into from
Sep 5, 2020

Commits on Sep 3, 2020

  1. [window] Disable GPU for COUNT(exp) queries

    GpuWindowExec currently counts null-rows when running COUNT(col)
    (or generally COUNT(expr)) window queries, owing to a bug in CUDF/Java.
    Left unchecked, this will produce incorrect results for said queries.
    
    This commit disables GPU acceleration for COUNT(expr) queries, while
    retaining support for COUNT(1) and COUNT(*).
    
    This may be reverted once we have a fix in CUDF/Java.
    
    Signed-off-by: Mithun RK <mythrocks@gmail.com>
    mythrocks committed Sep 3, 2020
    Configuration menu
    Copy the full SHA
    36ca2c8 View commit details
    Browse the repository at this point in the history