summaryrefslogtreecommitdiff
path: root/contrib/hstore/hstore_gist.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2015-04-14 17:03:42 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2015-04-14 17:03:42 +0300
commit4f700bcd20c087f60346cb8aefd0e269be8e2157 (patch)
tree096d9993ab5fa4baca490af8abdc500d64d7c63b /contrib/hstore/hstore_gist.c
parentd577bb868dfb595aa8df95974cd1c79e1baba924 (diff)
Reorganize our CRC source files again.
Now that we use CRC-32C in WAL and the control file, the "traditional" and "legacy" CRC-32 variants are not used in any frontend programs anymore. Move the code for those back from src/common to src/backend/utils/hash. Also move the slicing-by-8 implementation (back) to src/port. This is in preparation for next patch that will add another implementation that uses Intel SSE 4.2 instructions to calculate CRC-32C, where available.
Diffstat (limited to 'contrib/hstore/hstore_gist.c')
-rw-r--r--contrib/hstore/hstore_gist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/hstore/hstore_gist.c b/contrib/hstore/hstore_gist.c
index f375f5d3542..06f3c9359b9 100644
--- a/contrib/hstore/hstore_gist.c
+++ b/contrib/hstore/hstore_gist.c
@@ -6,7 +6,7 @@
#include "access/gist.h"
#include "access/skey.h"
#include "catalog/pg_type.h"
-#include "common/pg_crc.h"
+#include "utils/pg_crc.h"
#include "hstore.h"