diff options
author | Robert Haas <rhaas@postgresql.org> | 2020-02-27 09:25:41 +0530 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2020-02-27 09:25:41 +0530 |
commit | 05d8449e73694585b59f8b03aaa087f04cc4679a (patch) | |
tree | 0198e4d1dfc2774dbc58d24f148af4dd8fb2cd47 /src/backend/utils/adt/mac.c | |
parent | 008cf040962c98c7c55d54c28dcb43c3c1d83c92 (diff) | |
download | postgresql-05d8449e73694585b59f8b03aaa087f04cc4679a.tar.gz postgresql-05d8449e73694585b59f8b03aaa087f04cc4679a.zip |
Move src/backend/utils/hash/hashfn.c to src/common
This also involves renaming src/include/utils/hashutils.h, which
becomes src/include/common/hashfn.h. Perhaps an argument can be
made for keeping the hashutils.h name, but it seemed more
consistent to make it match the name of the file, and also more
descriptive of what is actually going on here.
Patch by me, reviewed by Suraj Kharage and Mark Dilger. Off-list
advice on how not to break the Windows build from Davinder Singh
and Amit Kapila.
Discussion: http://postgr.es/m/CA+TgmoaRiG4TXND8QuM6JXFRkM_1wL2ZNhzaUKsuec9-4yrkgw@mail.gmail.com
Diffstat (limited to 'src/backend/utils/adt/mac.c')
-rw-r--r-- | src/backend/utils/adt/mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/mac.c b/src/backend/utils/adt/mac.c index f9eb0b57d8b..8aeddc68632 100644 --- a/src/backend/utils/adt/mac.c +++ b/src/backend/utils/adt/mac.c @@ -13,12 +13,12 @@ #include "postgres.h" +#include "common/hashfn.h" #include "lib/hyperloglog.h" #include "libpq/pqformat.h" #include "port/pg_bswap.h" #include "utils/builtins.h" #include "utils/guc.h" -#include "utils/hashutils.h" #include "utils/inet.h" #include "utils/sortsupport.h" |