We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b95f2f commit 895f937Copy full SHA for 895f937
src/include/utils/pg_locale.h
@@ -66,7 +66,7 @@ extern void cache_locale_time(void);
66
* fake version of the standard type locale_t in the global namespace.
67
* pg_locale_t is occasionally checked for truth, so make it a pointer.
68
*/
69
-struct pg_locale_t
+struct pg_locale_struct
70
{
71
char provider;
72
union
@@ -84,7 +84,7 @@ struct pg_locale_t
84
} info;
85
};
86
87
-typedef struct pg_locale_t *pg_locale_t;
+typedef struct pg_locale_struct *pg_locale_t;
88
89
extern pg_locale_t pg_newlocale_from_collation(Oid collid);
90
0 commit comments