Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Add support for aliases in GROUP BY. Add Postgres-style date_part. #1607

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Commits on Jun 2, 2021

  1. Add support for aliases in GROUP BY. Add Postgres-style date_part.

    Note that the Postgres parser rewrites EXTRACT(YEAR FROM some_timestamp)
    as date_part("year", some_timestamp).
    
    Note that the optimizer gives us a bad OutputSchema when the GROUP BY expression
    is on a column of the table, so this does not fix chbenchmark. It is currently
    unclear if this is primarily a problem with the binder, optimizer, or translator.
    lmwnshn committed Jun 2, 2021
    Configuration menu
    Copy the full SHA
    f59f5b6 View commit details
    Browse the repository at this point in the history
  2. Tidy.

    lmwnshn committed Jun 2, 2021
    Configuration menu
    Copy the full SHA
    444ca48 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2021

  1. Configuration menu
    Copy the full SHA
    481a334 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2021

  1. Configuration menu
    Copy the full SHA
    f9ae317 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2021

  1. Configuration menu
    Copy the full SHA
    ef282f2 View commit details
    Browse the repository at this point in the history