chongdae opened a new issue #35: URL: https://github.com/apache/datasketches-postgresql/issues/35
theta_sketch_union does not treat as `null`. https://github.com/apache/datasketches-postgresql/issues/27 ``` select theta_sketch_get_estimate(theta_sketch_union(theta_sketch_build(1), theta_sketch_build(2))); select theta_sketch_get_estimate(theta_sketch_union(theta_sketch_build(1), null)); ``` First query returns "2", but second one returns "NULL". How can I build empty sketches? ---------------------------------------------------------------- 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]
