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/jsonb_gin.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/jsonb_gin.c')
-rw-r--r-- | src/backend/utils/adt/jsonb_gin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/jsonb_gin.c b/src/backend/utils/adt/jsonb_gin.c index 72a88121d5a..63122edf2e4 100644 --- a/src/backend/utils/adt/jsonb_gin.c +++ b/src/backend/utils/adt/jsonb_gin.c @@ -63,9 +63,9 @@ #include "access/stratnum.h" #include "catalog/pg_collation.h" #include "catalog/pg_type.h" +#include "common/hashfn.h" #include "miscadmin.h" #include "utils/builtins.h" -#include "utils/hashutils.h" #include "utils/jsonb.h" #include "utils/jsonpath.h" #include "utils/varlena.h" |