mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
Remove unnecessary cast in previous commit.
Noted by Kyotaro Horiguchi, who also reviewed the previous patch, but I failed to notice his review before committing.
This commit is contained in:
@ -380,7 +380,7 @@ uuid_abbrev_convert(Datum original, SortSupport ssup)
|
||||
pg_uuid_t *authoritative = DatumGetUUIDP(original);
|
||||
Datum res;
|
||||
|
||||
memcpy((char *) &res, authoritative->data, sizeof(Datum));
|
||||
memcpy(&res, authoritative->data, sizeof(Datum));
|
||||
uss->input_count += 1;
|
||||
|
||||
if (uss->estimating)
|
||||
|
Reference in New Issue
Block a user