mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Add display of oprcode (the underlying function's name) to psql's \do+.
The + modifier of \do didn't use to do anything, but now it adds an oprcode column. This is useful both as an additional form of documentation of what the operator does, and to save a step when finding out properties of the underlying function. Marko Tiikkaja, reviewed by Rushabh Lathia, adjusted a bit by me
This commit is contained in:
@ -410,7 +410,7 @@ exec_command(const char *cmd,
|
||||
success = listSchemas(pattern, show_verbose, show_system);
|
||||
break;
|
||||
case 'o':
|
||||
success = describeOperators(pattern, show_system);
|
||||
success = describeOperators(pattern, show_verbose, show_system);
|
||||
break;
|
||||
case 'O':
|
||||
success = listCollations(pattern, show_verbose, show_system);
|
||||
|
Reference in New Issue
Block a user