diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-04-05 11:18:12 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-04-05 11:18:12 +0900 |
commit | 9f6f1f9b8e61f9ce47e1936fc68c21a4a8d6722c (patch) | |
tree | f4862bca4b9a5a540919f4bedb64d4b378c33581 /src | |
parent | c50624cdd248c13b4ba199f95e24c88d2cc8a097 (diff) | |
download | postgresql-9f6f1f9b8e61f9ce47e1936fc68c21a4a8d6722c.tar.gz postgresql-9f6f1f9b8e61f9ce47e1936fc68c21a4a8d6722c.zip |
Fix typo in collationcmds.c
Introduced by 51e225d.
Author: Anton Voloshin
Discussion: https://postgr.es/m/05477da0-703c-7de7-998c-5879738e8f39@postgrespro.ru
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/commands/collationcmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/collationcmds.c b/src/backend/commands/collationcmds.c index 55a0e24a35a..b8ec6f57564 100644 --- a/src/backend/commands/collationcmds.c +++ b/src/backend/commands/collationcmds.c @@ -577,7 +577,7 @@ pg_import_system_collations(PG_FUNCTION_ARGS) * We use uloc_countAvailable()/uloc_getAvailable() rather than * ucol_countAvailable()/ucol_getAvailable(). The former returns a full * set of language+region combinations, whereas the latter only returns - * language+region combinations of they are distinct from the language's + * language+region combinations if they are distinct from the language's * base collation. So there might not be a de-DE or en-GB, which would be * confusing. */ |