Help for this page

Select Code to Download


  1. or download this
    log_min_duration_statement = -1    # -1 is disabled, 0 logs all statem
    +ents
                        # and their durations, > 0 logs only
                        # statements running at least this number
                        # of milliseconds
    
  2. or download this
    echo "
    create table t(n integer primary key);
    ...
    
    explain (analyze, verbose, format yaml) select count(*) from t where n
    + between 10 and 20;
    " | psql -qtAX
    
  3. or download this
    
    - Plan:
    ...
      Triggers:
      Execution Time: 0.149