GithubHelp home page GithubHelp logo

Comments (6)

georgesittas avatar georgesittas commented on June 15, 2024 1

I see, thanks for clarifying, we'll take a look soon.

from sqlglot.

herry13 avatar herry13 commented on June 15, 2024 1

@georgesittas I understood the reason.

Is there a chance for you to review and merge a PR that resolves a case where the "" is a column expression? I think we can implement your suggestion to replace all instances after "WITH". If the answer is yes, then I'll find some time to implement it.

What do you think?

from sqlglot.

herry13 avatar herry13 commented on June 15, 2024

This is related to #3175. The previous bug report is about parsing (line maybe_parse), not qualifying.

from sqlglot.

georgesittas avatar georgesittas commented on June 15, 2024

I wonder, does ClickHouse simply replace all instances of mydate in the query that follows the WITH definition? Perhaps this expansion could happen before hitting the qualifier.

The reason this fails is because it hasn't been a priority for us to take this special CTE AST case into account, since it's very ClickHouse specific. My guess is that we shouldn't pollute the optimizer code around CTEs to take this into account, but should instead preprocess the AST first to canonicalize it into something we can deal with.

We'd need to understand the semantics of the <expression> AS <identifier> syntax in CH a bit more fix this.

from sqlglot.

herry13 avatar herry13 commented on June 15, 2024

does ClickHouse simply replace all instances of mydate in the query that follows the WITH definition?

I believe this is correct if <expression> is a column expression.

If it is a select ... then the possible routes are:

  1. if the select's result is 1 row and 1 column (scalar value) (e.g. with (select col from db.table limit 1) as result select result;), then it behaves the same as the column expression where all instances are replaced;
  2. if the select's result is 1 row and multiple columns, then all column values are merged as a tuple, then all instances are replaced with this tuple (e.g. with (select * from db.table limit 1) as result select result;);
  3. if the select's result is multiple rows (e.g. with (select * from db.table limit 2) as result select result;), regardless the number of columns, then it raises an error: Code: 125. DB::Exception: Scalar subquery returned more than one row.

The above use cases are based on my observation running the example queries directly on clickhouse.

from sqlglot.

georgesittas avatar georgesittas commented on June 15, 2024

Hey @herry13, I think I'll close this one after all, at least for now. It doesn't seem trivial and since it's not a very high priority item for us, I'd like to avoid introducing a new transformation in the optimizer just to deal with this special case.

In general, it's very tricky to fully support ClickHouse, especially in the optimizer, as they have various non-standard SQL extensions not supported by other dialects.

We'll be happy to accept PRs. If you're interested to work on this, please reach out in Slack to discuss the implementation details.

from sqlglot.

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.