You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Suppress less info in regression tests using DROP CASCADE.
DROP CASCADE doesn't currently promise to visit dependent objects ina fixed order, so when the regression tests use it, we typically needto suppress the details of which objects get dropped in order to havepredictable test output. Traditionally we've done that by settingclient_min_messages higher than NOTICE, but there's a better way:we can "\set VERBOSITY terse" in psql. That suppresses the DETAILmessage with the object list, but we still get the basic notice tellinghow many objects were dropped. So at least the test case can verifythat the expected number of objects were dropped.The VERBOSITY method was already in use in a few places, but runaround and use it wherever it makes sense.Discussion:https://postgr.es/m/10766.1501608885@sss.pgh.pa.us