Git Product home page Git Product logo

Comments (1)

georgesittas avatar georgesittas commented on July 3, 2024

I can't reproduce this on the latest version:

>>> import sqlglot
>>> query = """
... select *
...     from dq_calcs
...         match_recognize (
...             partition by business_id
...             order by as_of
...             measures
...                 final min(raw_delinquency_flagged_at) as delinquency_flagged_at,
...                 final min(raw_delinquency_started_at) as delinquency_started_at,
...                 final max(raw_delinquency_ended_at) as delinquency_ended_at,
...                 final min(raw_payment_plan_started_at) as payment_plan_started_at,
...                 final min(raw_payment_plan_ended_at) as payment_plan_ended_at
...             all rows per match with unmatched rows
...             pattern (is_dq+)
...             define
...                 is_dq as is_delinquent
...     )
... """
>>> sqlglot.transpile(query, "snowflake")
['SELECT * FROM dq_calcs MATCH_RECOGNIZE (PARTITION BY business_id ORDER BY as_of MEASURES FINAL MIN(raw_delinquency_flagged_at) AS delinquency_flagged_at, FINAL MIN(raw_delinquency_started_at) AS delinquency_started_at, FINAL MAX(raw_delinquency_ended_at) AS delinquency_ended_at, FINAL MIN(raw_payment_plan_started_at) AS payment_plan_started_at, FINAL MIN(raw_payment_plan_ended_at) AS payment_plan_ended_at ALL ROWS PER MATCH WITH UNMATCHED ROWS PATTERN (is_dq+) DEFINE is_dq AS is_delinquent)']

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.