• Stephen Frost's avatar
    Expose explain's SUMMARY option · f9b1a0dd
    Stephen Frost authored
    This exposes the existing explain summary option to users to allow them
    to choose if they wish to have the planning time and totalled run time
    included in the EXPLAIN result.  The existing default behavior is
    retained if SUMMARY is not specified- running explain without analyze
    will not print the summary lines (just the planning time, currently)
    while running explain with analyze will include the summary lines (both
    the planning time and the totalled execution time).
    
    Users who wish to see the summary information for plain explain can now
    use: EXPLAIN (SUMMARY ON) query;  Users who do not want to have the
    summary printed for an analyze run can use:
    EXPLAIN (ANALYZE ON, SUMMARY OFF) query;
    
    With this, we can now also have EXPLAIN ANALYZE queries included in our
    regression tests by using:
    EXPLAIN (ANALYZE ON, TIMING OFF, SUMMARY off) query;
    
    I went ahead and added an example of this, which will hopefully not make
    the buildfarm complain.
    
    Author: Ashutosh Bapat
    Discussion: https://postgr.es/m/CAFjFpReE5z2h98U2Vuia8hcEkpRRwrauRjHmyE44hNv8-xk+XA@mail.gmail.com
    f9b1a0dd
prepare.c 22.2 KB