Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include "postgres.h"
00023
00024 #include "access/hash.h"
00025
00026
00027
00028
00029
00030
00031
00032 uint32
00033 string_hash(const void *key, Size keysize)
00034 {
00035
00036
00037
00038
00039
00040 Size s_len = strlen((const char *) key);
00041
00042 s_len = Min(s_len, keysize - 1);
00043 return DatumGetUInt32(hash_any((const unsigned char *) key,
00044 (int) s_len));
00045 }
00046
00047
00048
00049
00050 uint32
00051 tag_hash(const void *key, Size keysize)
00052 {
00053 return DatumGetUInt32(hash_any((const unsigned char *) key,
00054 (int) keysize));
00055 }
00056
00057
00058
00059
00060
00061
00062 uint32
00063 oid_hash(const void *key, Size keysize)
00064 {
00065 Assert(keysize == sizeof(Oid));
00066 return DatumGetUInt32(hash_uint32((uint32) *((const Oid *) key)));
00067 }
00068
00069
00070
00071
00072
00073
00074 uint32
00075 bitmap_hash(const void *key, Size keysize)
00076 {
00077 Assert(keysize == sizeof(Bitmapset *));
00078 return bms_hash_value(*((const Bitmapset *const *) key));
00079 }
00080
00081
00082
00083
00084 int
00085 bitmap_match(const void *key1, const void *key2, Size keysize)
00086 {
00087 Assert(keysize == sizeof(Bitmapset *));
00088 return !bms_equal(*((const Bitmapset *const *) key1),
00089 *((const Bitmapset *const *) key2));
00090 }