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
psql: add \dconfig command to show server's configuration parameters.
Plain \dconfig is basically equivalent to SHOW except that you cangive it a pattern with wildcards, either to match multiple GUCs orbecause you don't exactly remember the name you want.\dconfig+ adds type, context, and access-privilege information,mainly because every other kind of object privilege has a psql commandto show it, so GUC privileges should too. (A form of this command wasin some versions of the patch series leading up to commita0ffa88.We pulled it out then because of doubts that the design and code wereup to snuff, but I think subsequent work has resolved that.)In passing, fix incorrect completion of GUC names in GRANT/REVOKEON PARAMETER:a0ffa88 neglected to use the VERBATIM form ofCOMPLETE_WITH_QUERY, so it misbehaved for custom (qualified) GUCnames.Mark Dilger and Tom LaneDiscussion:https://postgr.es/m/3118455.1649267333@sss.pgh.pa.us