mirror of
https://github.com/postgres/postgres.git
synced 2025-06-30 21:42:05 +03:00
DDL support for collations
- collowner field - CREATE COLLATION - ALTER COLLATION - DROP COLLATION - COMMENT ON COLLATION - integration with extensions - pg_dump support for the above - dependency management - psql tab completion - psql \dO command
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user