| -- Licensed to the Apache Software Foundation (ASF) under one |
| -- or more contributor license agreements. See the NOTICE file |
| -- distributed with this work for additional information |
| -- regarding copyright ownership. The ASF licenses this file |
| -- to you under the Apache License, Version 2.0 (the |
| -- "License"); you may not use this file except in compliance |
| -- with the License. You may obtain a copy of the License at |
| -- |
| -- http://www.apache.org/licenses/LICENSE-2.0 |
| -- |
| -- Unless required by applicable law or agreed to in writing, |
| -- software distributed under the License is distributed on an |
| -- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| -- KIND, either express or implied. See the License for the |
| -- specific language governing permissions and limitations |
| -- under the License. |
| |
| CREATE TYPE hll_sketch; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_in(cstring) RETURNS hll_sketch |
| AS '$libdir/datasketches', 'pg_sketch_in' |
| LANGUAGE C STRICT IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_out(hll_sketch) RETURNS cstring |
| AS '$libdir/datasketches', 'pg_sketch_out' |
| LANGUAGE C STRICT IMMUTABLE; |
| |
| CREATE TYPE hll_sketch ( |
| INPUT = hll_sketch_in, |
| OUTPUT = hll_sketch_out, |
| STORAGE = EXTERNAL |
| ); |
| |
| CREATE CAST (bytea as hll_sketch) WITHOUT FUNCTION AS ASSIGNMENT; |
| CREATE CAST (hll_sketch as bytea) WITHOUT FUNCTION AS ASSIGNMENT; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_add_item(internal, anyelement) RETURNS internal |
| AS '$libdir/datasketches', 'pg_hll_sketch_add_item' |
| LANGUAGE C IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_add_item(internal, anyelement, int) RETURNS internal |
| AS '$libdir/datasketches', 'pg_hll_sketch_add_item' |
| LANGUAGE C IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_add_item(internal, anyelement, int, int) RETURNS internal |
| AS '$libdir/datasketches', 'pg_hll_sketch_add_item' |
| LANGUAGE C IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_get_estimate(hll_sketch) RETURNS double precision |
| AS '$libdir/datasketches', 'pg_hll_sketch_get_estimate' |
| LANGUAGE C STRICT IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_get_estimate_and_bounds(hll_sketch) RETURNS double precision[] |
| AS '$libdir/datasketches', 'pg_hll_sketch_get_estimate_and_bounds' |
| LANGUAGE C STRICT IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_get_estimate_and_bounds(hll_sketch, int) RETURNS double precision[] |
| AS '$libdir/datasketches', 'pg_hll_sketch_get_estimate_and_bounds' |
| LANGUAGE C STRICT IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_from_internal(internal) RETURNS hll_sketch |
| AS '$libdir/datasketches', 'pg_hll_sketch_from_internal' |
| LANGUAGE C STRICT IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_get_estimate_from_internal(internal) RETURNS double precision |
| AS '$libdir/datasketches', 'pg_hll_sketch_get_estimate_from_internal' |
| LANGUAGE C STRICT IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_to_string(hll_sketch) RETURNS TEXT |
| AS '$libdir/datasketches', 'pg_hll_sketch_to_string' |
| LANGUAGE C STRICT IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_union_agg(internal, hll_sketch) RETURNS internal |
| AS '$libdir/datasketches', 'pg_hll_sketch_union_agg' |
| LANGUAGE C IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_union_agg(internal, hll_sketch, int) RETURNS internal |
| AS '$libdir/datasketches', 'pg_hll_sketch_union_agg' |
| LANGUAGE C IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_union_agg(internal, hll_sketch, int, int) RETURNS internal |
| AS '$libdir/datasketches', 'pg_hll_sketch_union_agg' |
| LANGUAGE C IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_union_get_result(internal) RETURNS hll_sketch |
| AS '$libdir/datasketches', 'pg_hll_union_get_result' |
| LANGUAGE C STRICT IMMUTABLE; |
| |
| CREATE AGGREGATE hll_sketch_distinct(anyelement) ( |
| sfunc = hll_sketch_add_item, |
| stype = internal, |
| finalfunc = hll_sketch_get_estimate_from_internal |
| ); |
| |
| CREATE AGGREGATE hll_sketch_distinct(anyelement, int) ( |
| sfunc = hll_sketch_add_item, |
| stype = internal, |
| finalfunc = hll_sketch_get_estimate_from_internal |
| ); |
| |
| CREATE AGGREGATE hll_sketch_build(anyelement) ( |
| sfunc = hll_sketch_add_item, |
| stype = internal, |
| finalfunc = hll_sketch_from_internal |
| ); |
| |
| CREATE AGGREGATE hll_sketch_build(anyelement, int) ( |
| sfunc = hll_sketch_add_item, |
| stype = internal, |
| finalfunc = hll_sketch_from_internal |
| ); |
| |
| CREATE AGGREGATE hll_sketch_build(anyelement, int, int) ( |
| sfunc = hll_sketch_add_item, |
| stype = internal, |
| finalfunc = hll_sketch_from_internal |
| ); |
| |
| CREATE AGGREGATE hll_sketch_union(hll_sketch) ( |
| sfunc = hll_sketch_union_agg, |
| stype = internal, |
| finalfunc = hll_union_get_result |
| ); |
| |
| CREATE AGGREGATE hll_sketch_union(hll_sketch, int) ( |
| sfunc = hll_sketch_union_agg, |
| stype = internal, |
| finalfunc = hll_union_get_result |
| ); |
| |
| CREATE AGGREGATE hll_sketch_union(hll_sketch, int, int) ( |
| sfunc = hll_sketch_union_agg, |
| stype = internal, |
| finalfunc = hll_union_get_result |
| ); |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_union(hll_sketch, hll_sketch) RETURNS hll_sketch |
| AS '$libdir/datasketches', 'pg_hll_sketch_union' |
| LANGUAGE C IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_union(hll_sketch, hll_sketch, int) RETURNS hll_sketch |
| AS '$libdir/datasketches', 'pg_hll_sketch_union' |
| LANGUAGE C IMMUTABLE; |
| |
| CREATE OR REPLACE FUNCTION hll_sketch_union(hll_sketch, hll_sketch, int, int) RETURNS hll_sketch |
| AS '$libdir/datasketches', 'pg_hll_sketch_union' |
| LANGUAGE C IMMUTABLE; |