summaryrefslogtreecommitdiff
path: root/contrib/hstore
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2020-02-27 09:25:41 +0530
committerRobert Haas <rhaas@postgresql.org>2020-02-27 09:25:41 +0530
commit05d8449e73694585b59f8b03aaa087f04cc4679a (patch)
tree0198e4d1dfc2774dbc58d24f148af4dd8fb2cd47 /contrib/hstore
parent008cf040962c98c7c55d54c28dcb43c3c1d83c92 (diff)
downloadpostgresql-05d8449e73694585b59f8b03aaa087f04cc4679a.tar.gz
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 'contrib/hstore')
-rw-r--r--contrib/hstore/hstore_op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hstore/hstore_op.c b/contrib/hstore/hstore_op.c
index 01e59beaa3..fb1bb0681c 100644
--- a/contrib/hstore/hstore_op.c
+++ b/contrib/hstore/hstore_op.c
@@ -5,10 +5,10 @@
#include "access/htup_details.h"
#include "catalog/pg_type.h"
+#include "common/hashfn.h"
#include "funcapi.h"
#include "hstore.h"
#include "utils/builtins.h"
-#include "utils/hashutils.h"
#include "utils/memutils.h"
/* old names for C functions */