Commit cbb82e37 authored by Robert Haas's avatar Robert Haas

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.
parent a76ef15d
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment