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

Add option --remove_pg_catalog_from_functions #90

Merged
merged 7 commits into from
Sep 18, 2021
Merged

Add option --remove_pg_catalog_from_functions #90

merged 7 commits into from
Sep 18, 2021

Commits on Sep 11, 2021

  1. Add option --remove_pg_catalog_from_functions

    The new option removes the pg_catalog schema before function calls.
    These may occur when PG replaces the desired function with an
    adequate other function.
    borisz committed Sep 11, 2021
    Configuration menu
    Copy the full SHA
    d18315a View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2021

  1. position(text, text) is not exposed

    Unfortunately position('a', 'b') is not directly callable.
    The reason is the parameters flipped compared to
    position('b' in 'a').
    
    Possible is
    position('b' in 'a')
    pg_catalog.position('a', 'b')
    strpos('a', 'b')
    pg_catalog.strpos('a', 'b')
    borisz committed Sep 12, 2021
    Configuration menu
    Copy the full SHA
    266e4c4 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2021

  1. Rename long remove_pg_catalog_from_functions

    Rename option to remove-pg_catalog-from-functions and move it closer to other named options
    borisz committed Sep 13, 2021
    Configuration menu
    Copy the full SHA
    65129ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ff02199 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2021

  1. Configuration menu
    Copy the full SHA
    4fd79cc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e9a020b View commit details
    Browse the repository at this point in the history
  3. Cleanup remove-pg_catalog-from-functions test code

    No functional change
    borisz committed Sep 14, 2021
    Configuration menu
    Copy the full SHA
    881854a View commit details
    Browse the repository at this point in the history