diff options
author | Jeff Davis <jdavis@postgresql.org> | 2024-09-04 12:30:14 -0700 |
---|---|---|
committer | Jeff Davis <jdavis@postgresql.org> | 2024-09-04 14:35:25 -0700 |
commit | 06421b08436414b42cd169501005f15adee986f1 (patch) | |
tree | 2cf8e527daaf21dd9057f0d2a3a648e35367ff96 /src/include/utils | |
parent | 83eb481d527b541e2ef2a1b14ab2c56b2ccf362b (diff) | |
download | postgresql-06421b08436414b42cd169501005f15adee986f1.tar.gz postgresql-06421b08436414b42cd169501005f15adee986f1.zip |
Remove lc_collate_is_c().
Instead just look up the collation and check collate_is_c field.
Author: Andreas Karlsson
Discussion: https://postgr.es/m/60929555-4709-40a7-b136-bcb44cff5a3c@proxel.se
Diffstat (limited to 'src/include/utils')
-rw-r--r-- | src/include/utils/pg_locale.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/utils/pg_locale.h b/src/include/utils/pg_locale.h index f41d33975be..8ec24437f4d 100644 --- a/src/include/utils/pg_locale.h +++ b/src/include/utils/pg_locale.h @@ -54,7 +54,6 @@ extern PGDLLIMPORT bool database_ctype_is_c; extern bool check_locale(int category, const char *locale, char **canonname); extern char *pg_perm_setlocale(int category, const char *locale); -extern bool lc_collate_is_c(Oid collation); extern bool lc_ctype_is_c(Oid collation); /* |