mirror of
https://github.com/postgres/postgres.git
synced 2025-08-19 23:22:23 +03:00
Refactor to introduce pg_locale_deterministic().
Avoids the need of callers to test for NULL, and also avoids the need to access the pg_locale_t structure directly. Reviewed-by: Peter Eisentraut, Peter Geoghegan Discussion: https://postgr.es/m/a581136455c940d7bd0ff482d3a2bd51af25a94f.camel%40j-davis.com
This commit is contained in:
@@ -282,7 +282,7 @@ hashtext(PG_FUNCTION_ARGS)
|
||||
if (!lc_collate_is_c(collid))
|
||||
mylocale = pg_newlocale_from_collation(collid);
|
||||
|
||||
if (!mylocale || mylocale->deterministic)
|
||||
if (pg_locale_deterministic(mylocale))
|
||||
{
|
||||
result = hash_any((unsigned char *) VARDATA_ANY(key),
|
||||
VARSIZE_ANY_EXHDR(key));
|
||||
@@ -342,7 +342,7 @@ hashtextextended(PG_FUNCTION_ARGS)
|
||||
if (!lc_collate_is_c(collid))
|
||||
mylocale = pg_newlocale_from_collation(collid);
|
||||
|
||||
if (!mylocale || mylocale->deterministic)
|
||||
if (pg_locale_deterministic(mylocale))
|
||||
{
|
||||
result = hash_any_extended((unsigned char *) VARDATA_ANY(key),
|
||||
VARSIZE_ANY_EXHDR(key),
|
||||
|
Reference in New Issue
Block a user