aboutsummaryrefslogtreecommitdiff
path: root/src/include/lib/hyperloglog.h
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2016-04-27 10:55:32 -0400
committerRobert Haas <rhaas@postgresql.org>2016-04-27 10:55:32 -0400
commit360ca27a9b9793f3939c9f70de77c1272a110362 (patch)
treed73f5fe4475aedc51b290526d743cf9895a66744 /src/include/lib/hyperloglog.h
parent59eb55127906b943ff155240eebc161df8edb62f (diff)
downloadpostgresql-360ca27a9b9793f3939c9f70de77c1272a110362.tar.gz
postgresql-360ca27a9b9793f3939c9f70de77c1272a110362.zip
Remove mergeHyperLogLog.
It's buggy. If somebody needs this later, they'll need to put back a non-buggy vesion of it. Discussion: CAM3SWZT-i6R9JU5YXa8MJUou2_r3LfGJZpQ9tYa1BYxfkj0=cQ@mail.gmail.com Discussion: CAM3SWZRUOLsYoTT83QgdUy9D8ehYWm_nvbrrfcOOzikiRfFY7g@mail.gmail.com Peter Geoghegan
Diffstat (limited to 'src/include/lib/hyperloglog.h')
-rw-r--r--src/include/lib/hyperloglog.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/lib/hyperloglog.h b/src/include/lib/hyperloglog.h
index b999b3056a6..ee88f8f781a 100644
--- a/src/include/lib/hyperloglog.h
+++ b/src/include/lib/hyperloglog.h
@@ -63,7 +63,6 @@ extern void initHyperLogLog(hyperLogLogState *cState, uint8 bwidth);
extern void initHyperLogLogError(hyperLogLogState *cState, double error);
extern void addHyperLogLog(hyperLogLogState *cState, uint32 hash);
extern double estimateHyperLogLog(hyperLogLogState *cState);
-extern void mergeHyperLogLog(hyperLogLogState *cState, const hyperLogLogState *oState);
extern void freeHyperLogLog(hyperLogLogState *cState);
#endif /* HYPERLOGLOG_H */