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/lib/bloomfilter.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/lib/bloomfilter.c')
-rw-r--r-- | src/backend/lib/bloomfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/lib/bloomfilter.c b/src/backend/lib/bloomfilter.c index 29b62e70e41..f040e83c016 100644 --- a/src/backend/lib/bloomfilter.c +++ b/src/backend/lib/bloomfilter.c @@ -35,9 +35,9 @@ #include <math.h> +#include "common/hashfn.h" #include "lib/bloomfilter.h" #include "port/pg_bitutils.h" -#include "utils/hashutils.h" #define MAX_HASH_FUNCS 10 |