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

--schema-qualify-objects functionality and some bugfixes #204

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from

Commits on Jan 20, 2017

  1. Previously, parsing of column access privileges wasn't working. The

    parser couldn't handle the way Postgres collates the column-list to the
    privilege: 
    GRANT ALL(col1) ON TABLE table1 TO ellmkay;
    
    This is now fixed in the parser, and a test-case is added.
    ellmkay committed Jan 20, 2017
    Configuration menu
    Copy the full SHA
    916847a View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2017

  1. Fix search-path output which wasn't working in cases where privileges

    were diffing in a multi-schema setup.
    Marcus Kempe committed Jan 30, 2017
    Configuration menu
    Copy the full SHA
    f6e199b View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2017

  1. --schema-qualify-objects

    instead of adding 'SET search_path' statements prior to diff output (the
    default behaviour), all statements will be schema-qualified.
    
    This commit touches quite a few files in the project, and also fixes a
    few privilege related bugs in passing. 
    
    A thorough test case is also added.
    marcus committed Jan 31, 2017
    Configuration menu
    Copy the full SHA
    b37c9f9 View commit details
    Browse the repository at this point in the history