Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: okbob/plpgsql_check
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.5.4
Choose a base ref
...
head repository: okbob/plpgsql_check
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.6.0
Choose a head ref
  • 5 commits
  • 23 files changed
  • 1 contributor

Commits on Oct 13, 2023

  1. Profiler's ToDo notes

    okbob committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    f4d4ac4 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    okbob authored Oct 13, 2023
    Configuration menu
    Copy the full SHA
    9b50cb4 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2023

  1. fix formatting

    okbob committed Oct 29, 2023
    Configuration menu
    Copy the full SHA
    b68de47 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Allows to use variable that holds constant like constant (only when t…

    …here
    
    is sure about the variable value - there is not some sophisticated inteligence).
    This is used mainly for check of dynamic SQL, and should to reduce some false
    alarms.
    
    supported:
    
        var := 'select 1';
        execute var;
    
    unsupported (the possible value is ambigonuous):
    
        var := 'select 1';
        if (expr) then
          var := 'select 2';
        end if;
        -- now, the var can be 'select 1' or 'select 2',
        -- and this case is unsupported
        execute var;
    okbob committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    d47c3c6 View commit details
    Browse the repository at this point in the history
  2. postgresql17-plpgsql_check.spec

    - add new option constants_tracing (true by default) for controling of possibility to trace constants.
    - increase version to 2.6 - API change
    okbob committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    9384afc View commit details
    Browse the repository at this point in the history
Loading