1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Add new psql command \dL to list languages.

Original patch by Fernando Ike, revived by Josh Kuperschmidt, reviewed by Andreas
Karlsson, and in earlier versions by Tom Lane and Peter Eisentraut.
This commit is contained in:
Robert Haas
2011-01-20 00:00:30 -05:00
parent 92f7eebbbd
commit 9c5e2c120b
6 changed files with 92 additions and 1 deletions

View File

@ -416,6 +416,9 @@ exec_command(const char *cmd,
case 'l':
success = do_lo_list();
break;
case 'L':
success = listLanguages(pattern, show_verbose, show_system);
break;
case 'n':
success = listSchemas(pattern, show_verbose, show_system);
break;