Revert a few small patches that were intended for version 19.
- 4c787a24e7e220a60022e47c1776f22f72902899 - 78bd364ee39ca70a8f9cb8719282389866a08e14 - 7a6880fadc177873d5663961ec3a02d67e34dcbe - 8898082a5d3e94eef073f0e08124137e096e78ef Suggested-by: Robert Haas <robertmhaas@gmail.com> Discussion: https://postgr.es/m/CA+TgmoZ=J=PVNZUNKaxULu+KUVSt3Y-aJ1DZ9Y3Co6mu0z62jA@mail.gmail.com Discussion: https://postgr.es/m/60e8c6d0a6c08e67f15dbbe9e53df0119c710065.camel@j-davis.com
This commit is contained in:
parent
b774ad4933
commit
e1458f2f1b
@ -726,7 +726,7 @@ string2ean(const char *str, struct Node *escontext, ean13 *result,
|
||||
if (type != INVALID)
|
||||
goto eaninvalid;
|
||||
type = ISSN;
|
||||
*aux1++ = pg_ascii_toupper((unsigned char) *aux2);
|
||||
*aux1++ = toupper((unsigned char) *aux2);
|
||||
length++;
|
||||
}
|
||||
else if (length == 9 && (digit || *aux2 == 'X' || *aux2 == 'x') && last)
|
||||
@ -736,7 +736,7 @@ string2ean(const char *str, struct Node *escontext, ean13 *result,
|
||||
goto eaninvalid;
|
||||
if (type == INVALID)
|
||||
type = ISBN; /* ISMN must start with 'M' */
|
||||
*aux1++ = pg_ascii_toupper((unsigned char) *aux2);
|
||||
*aux1++ = toupper((unsigned char) *aux2);
|
||||
length++;
|
||||
}
|
||||
else if (length == 11 && digit && last)
|
||||
|
@ -321,7 +321,7 @@ check_foreign_key(PG_FUNCTION_ARGS)
|
||||
if (nrefs < 1)
|
||||
/* internal error */
|
||||
elog(ERROR, "check_foreign_key: %d (< 1) number of references specified", nrefs);
|
||||
action = pg_ascii_tolower((unsigned char) *(args[1]));
|
||||
action = tolower((unsigned char) *(args[1]));
|
||||
if (action != 'r' && action != 'c' && action != 's')
|
||||
/* internal error */
|
||||
elog(ERROR, "check_foreign_key: invalid action %s", args[1]);
|
||||
|
@ -1538,7 +1538,7 @@ GetDecimalFromHex(char hex)
|
||||
if (isdigit((unsigned char) hex))
|
||||
return hex - '0';
|
||||
else
|
||||
return pg_ascii_tolower((unsigned char) hex) - 'a' + 10;
|
||||
return tolower((unsigned char) hex) - 'a' + 10;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -115,7 +115,8 @@ inet_cidr_pton_ipv4(const char *src, u_char *dst, size_t size)
|
||||
src++; /* skip x or X. */
|
||||
while ((ch = *src++) != '\0' && isxdigit((unsigned char) ch))
|
||||
{
|
||||
ch = pg_ascii_tolower((unsigned char) ch);
|
||||
if (isupper((unsigned char) ch))
|
||||
ch = tolower((unsigned char) ch);
|
||||
n = strchr(xdigits, ch) - xdigits;
|
||||
assert(n >= 0 && n <= 15);
|
||||
if (dirty == 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user