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

MySQL Parser understands VIEWs with a field list. #87

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

MySQL Parser understands VIEWs with a field list. #87

wants to merge 4 commits into from

Commits on Apr 2, 2017

  1. MySQL Parser understands VIEWs with a field list.

    Updates the MySQL parser to properly parse CREATE VIEW statements that
    contain a field list after the view name. This allows the parser
    to understand statements created by the MySQL producer.
    
    Prior to this change, this statement would be parsed properly:
    
        CREATE
          VIEW view_foo AS
            SELECT id, name FROM thing;
    
    But this one would not:
    
        CREATE
          VIEW view_foo (id, name) AS
            SELECT id, name FROM thing;
    adherzog committed Apr 2, 2017
    Configuration menu
    Copy the full SHA
    707abe2 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2017

  1. Configuration menu
    Copy the full SHA
    3d090a5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8bdf3bf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9953926 View commit details
    Browse the repository at this point in the history