mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +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:
parent
a76ef15d9f
commit
cbb82e370d
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user