mirror of https://github.com/citusdata/citus.git
Completely remove replicationconnparam when hashing
parent
b65da5fae8
commit
e51e040c14
|
@ -1237,8 +1237,6 @@ ConnectionHashHash(const void *key, Size keysize)
|
||||||
hash = hash_combine(hash, hash_uint32(entry->port));
|
hash = hash_combine(hash, hash_uint32(entry->port));
|
||||||
hash = hash_combine(hash, string_hash(entry->user, NAMEDATALEN));
|
hash = hash_combine(hash, string_hash(entry->user, NAMEDATALEN));
|
||||||
hash = hash_combine(hash, string_hash(entry->database, NAMEDATALEN));
|
hash = hash_combine(hash, string_hash(entry->database, NAMEDATALEN));
|
||||||
hash = hash_combine(hash, hash_any((void *) &entry->replicationConnParam,
|
|
||||||
sizeof(entry->replicationConnParam)));
|
|
||||||
|
|
||||||
return hash;
|
return hash;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue