Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[postgres] Add support for custom binary operators #548

Merged
merged 5 commits into from
Aug 5, 2022

Commits on Jul 30, 2022

  1. [postgres] Add support for custom binary operators

    More details about operators in general are at:
    https://www.postgresql.org/docs/current/sql-createoperator.html. This
    patch attempts to parse `SELECT` queries that reference an operator
    using `OPERATOR(<optional_schema>.<operator_name>)` syntax.
    
    This is a PostgreSQL extension. There are no provisions for user-defined operators in the SQL standard.
    iskakaushik committed Jul 30, 2022
    Configuration menu
    Copy the full SHA
    89e5883 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

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

Commits on Aug 5, 2022

  1. Configuration menu
    Copy the full SHA
    351e295 View commit details
    Browse the repository at this point in the history
  2. Parse OPERATOR as Vec<String>

    alamb committed Aug 5, 2022
    Configuration menu
    Copy the full SHA
    7225721 View commit details
    Browse the repository at this point in the history
  3. fix: std

    alamb committed Aug 5, 2022
    Configuration menu
    Copy the full SHA
    af1e4a9 View commit details
    Browse the repository at this point in the history