phstudy opened a new pull request #26:
URL: https://github.com/apache/incubator-datasketches-postgresql/pull/26
add theta-sketch intesection agg function
example:
```
postgres=# create table theta_sketch_test(sketch theta_sketch);
postgres=# insert into theta_sketch_test select theta_sketch_build(1);
postgres=# insert into theta_sketch_test select theta_sketch_build(1);
postgres=# select
theta_sketch_get_estimate(theta_sketch_intersection(sketch)) from
theta_sketch_test;
theta_sketch_get_estimate
---------------------------
1
(1 row)
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]