mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Introduce t_isalnum() to replace t_isalpha() || t_isdigit() tests.
ts_locale.c omitted support for "isalnum" tests, perhaps on the grounds that there were initially no use-cases for that. However, both ltree and pg_trgm need such tests, and we do also have one use-case now in the core backend. The workaround of testing isalpha and isdigit separately seems quite inefficient, especially when dealing with multibyte characters; so let's fill in the missing support. Discussion: https://postgr.es/m/2548310.1664999615@sss.pgh.pa.us
This commit is contained in:
@ -42,6 +42,7 @@ typedef struct
|
||||
extern int t_isdigit(const char *ptr);
|
||||
extern int t_isspace(const char *ptr);
|
||||
extern int t_isalpha(const char *ptr);
|
||||
extern int t_isalnum(const char *ptr);
|
||||
extern int t_isprint(const char *ptr);
|
||||
|
||||
extern char *lowerstr(const char *str);
|
||||
|
Reference in New Issue
Block a user