Code Monkey home page Code Monkey logo

Comments (4)

jayzhan211 avatar jayzhan211 commented on July 4, 2024 1

At the point of push down filter, we no longer have Expr::Unnest but Expr::Column or Expr::BinaryExpr

expr: BinaryExpr(BinaryExpr { left: Column(Column { relation: None, name: "unnest(t.a)" }), op: Gt, right: Literal(Int32(3)) })

Instead of checking whether there is unnest contained in filter expression, should we move the conversion of Expr::Unnest to LogicalPlan::Unnest try_process_unnest to the optimization step, specifically at some point AFTER push down filter step? I think we can check whether unnest exists by Expr::Unnest, and also I think we don't need to specialize LogicalPlan::Unnest in push down filter step, we can deal with LogicalPlan::Projection only, Expr::Unnest should be part of the LogicalPlan::Unnest. After push down filter, we convert Expr::Unnest to LogicalPlan::Unnest

But ideally logical plan optimization should be optional, which means even the optimization step is skipped, we still expect to get the result. Based on this, it might not be a good idea to move the conversion to optmization step 🤔

from arrow-datafusion.

jonahgao avatar jonahgao commented on July 4, 2024

It seems to be supported on the main branch.

DataFusion CLI v39.0.0
> create table t (a int[]) as values ([1,2,3]), ([4,5,6]);
0 row(s) fetched.
Elapsed 0.030 seconds.

> select ua from (select unnest(a) as ua from t) where ua > 3;

+----+
| ua |
+----+
| 4  |
| 5  |
| 6  |
+----+
3 row(s) fetched.
Elapsed 0.009 seconds.

from arrow-datafusion.

jayzhan211 avatar jayzhan211 commented on July 4, 2024

It seems to be supported on the main branch.

DataFusion CLI v39.0.0
> create table t (a int[]) as values ([1,2,3]), ([4,5,6]);
0 row(s) fetched.
Elapsed 0.030 seconds.

> select ua from (select unnest(a) as ua from t) where ua > 3;

+----+
| ua |
+----+
| 4  |
| 5  |
| 6  |
+----+
3 row(s) fetched.
Elapsed 0.009 seconds.

I still get the error 🤔

from arrow-datafusion.

jayzhan211 avatar jayzhan211 commented on July 4, 2024

It seems to be supported on the main branch.

DataFusion CLI v39.0.0
> create table t (a int[]) as values ([1,2,3]), ([4,5,6]);
0 row(s) fetched.
Elapsed 0.030 seconds.

> select ua from (select unnest(a) as ua from t) where ua > 3;

+----+
| ua |
+----+
| 4  |
| 5  |
| 6  |
+----+
3 row(s) fetched.
Elapsed 0.009 seconds.

I still get the error 🤔

Ok, my bad. It is introduced by the latest PR #10974

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.