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

Cherry pick Rows out in EXPLAIN ANALYZE #670

Open
wants to merge 10 commits into
base: main
Choose a base branch
from

Commits on Oct 15, 2024

  1. Rows out в EXPLAIN ANALYZE (apache#44)

    * Add "Rows out" print in cdbexplain_showExecStats
    
    set gp_enable_explain_rows_out=on;
    
    explain (analyze,verbose,format text) select * from tt where a > b;
    
                                                              QUERY PLAN
    -------------------------------------------------------------------------------------------------------------------------------
     Gather Motion 3:1  (slice1; segments: 3)  (cost=0.00..431.00 rows=1 width=8) (actual time=2.534..223.679 rows=499500 loops=1)
       Output: a, b
       ->  Seq Scan on public.tt  (cost=0.00..431.00 rows=1 width=8) (actual time=0.145..127.350 rows=166742 loops=1)
             Output: a, b
             Filter: (tt.a > tt.b)
             Rows out: 166500.00 rows avg x 3 workers, 166742 rows max (seg0), 166340 rows min (seg2).
    ...
    robozmey committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    1264cd5 View commit details
    Browse the repository at this point in the history
  2. Fix GUC description

    robozmey committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    e1320a9 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2024

  1. Configuration menu
    Copy the full SHA
    87928a5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ecca72c View commit details
    Browse the repository at this point in the history
  3. Add min to CdbExplain_Agg

    robozmey committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    cbff7f0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c0448fe View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2024

  1. Configuration menu
    Copy the full SHA
    490521e View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. Configuration menu
    Copy the full SHA
    0b7ab04 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e617d39 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. Remove unused code

    robozmey committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    d6aa761 View commit details
    Browse the repository at this point in the history