Git Product home page Git Product logo

Comments (5)

riosw avatar riosw commented on June 15, 2024 2

I was playing around with this issue and found a more minimal example:

WITH A AS (
    SELECT
        1 AS id, 1 AS foo
    UNION ALL
    SELECT
        1, 5
)
SELECT
    ARRAY_AGG(DISTINCT a.foo),
    SUM(DISTINCT 1) 
FROM
    A a
GROUP BY
    a.id;

It is interesting though, using SUM(1) instead of SUM(DISTINCT 1) did not panic

from arrow-datafusion.

bellwether-softworks avatar bellwether-softworks commented on June 15, 2024 1

@jayzhan211 I appreciate your concern regarding the complex example case; I attempted to create a simpler contrived example, but was unable to trigger the panic doing so. I don't currently know the exact conditions that are triggering the problem.

from arrow-datafusion.

jayzhan211 avatar jayzhan211 commented on June 15, 2024

I added the assertion because I don't know if there is any case that has len > 1.

It would be nice if you had a simpler example to add to the test!

from arrow-datafusion.

jayzhan211 avatar jayzhan211 commented on June 15, 2024

@jayzhan211 I appreciate your concern regarding the complex example case; I attempted to create a simpler contrived example, but was unable to trigger the panic doing so. I don't currently know the exact conditions that are triggering the problem.

That's fine. I think that is the reason why I can't easily find the test case that trigger this panic, probably only the complex aggregate query that has multiple states meet the requirement.

I think we can add your example as a test case. And, find out whether we should fix the multi states issue in merge_batch or elsewhere before entering merge_batch.

from arrow-datafusion.

alamb avatar alamb commented on June 15, 2024

Added to #10517

from arrow-datafusion.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.