diff options
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index a80678c2c3f..d1268848d5b 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -425,6 +425,9 @@ exec_command(const char *cmd, case 'o': success = describeOperators(pattern, show_system); break; + case 'O': + success = listCollations(pattern, show_verbose, show_system); + break; case 'p': success = permissionsList(pattern); break; |