summaryrefslogtreecommitdiff
path: root/src/backend/utils/resowner
diff options
context:
space:
mode:
authorRobert Haas2020-02-27 03:55:41 +0000
committerRobert Haas2020-02-27 03:55:41 +0000
commit05d8449e73694585b59f8b03aaa087f04cc4679a (patch)
tree0198e4d1dfc2774dbc58d24f148af4dd8fb2cd47 /src/backend/utils/resowner
parent008cf040962c98c7c55d54c28dcb43c3c1d83c92 (diff)
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/resowner')
-rw-r--r--src/backend/utils/resowner/resowner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/resowner/resowner.c b/src/backend/utils/resowner/resowner.c
index ac6f226f59f..3c39e48825a 100644
--- a/src/backend/utils/resowner/resowner.c
+++ b/src/backend/utils/resowner/resowner.c
@@ -20,12 +20,12 @@
*/
#include "postgres.h"
+#include "common/hashfn.h"
#include "jit/jit.h"
#include "storage/bufmgr.h"
#include "storage/ipc.h"
#include "storage/predicate.h"
#include "storage/proc.h"
-#include "utils/hashutils.h"
#include "utils/memutils.h"
#include "utils/rel.h"
#include "utils/resowner_private.h"